// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using osu.Game.Online.API.Requests.Responses; namespace osu.Game.Online.API.Requests { /// /// Looks up users with the given . /// In comparison to , the response here does not contain , /// but in exchange is subject to less stringent rate limiting, making it suitable for mass user listings. /// public class LookupUsersRequest : APIRequest { public readonly int[] UserIds; private const int max_ids_per_request = 50; public LookupUsersRequest(int[] userIds) { if (userIds.Length > max_ids_per_request) throw new ArgumentException($"{nameof(LookupUsersRequest)} calls only support up to {max_ids_per_request} IDs at once"); UserIds = userIds; } protected override string Target => @"users/lookup/?ids[]=" + string.Join(@"&ids[]=", UserIds); } }