According to https://github.com/ppy/osu-api/wiki#apiget_user get_user returns a list of users.
How do I give multiple user_ids, so that with a single call, the API returns a list of multiple players?
api/get_user?k=(API_key)&type=id&u=(user_id) gives me a list of only 1 player,
api/get_user?k=(API_key)&type=id&u=(user_id)&u=(user_id)&u=(user_id) still only returns 1 player.
The problem is, I could make a loop that makes a call for every single user, but there could be to many users for the call limit of 60 per minute.
Situation: Get all user_ids from multiplayer lobby, then get every userprofile for the username.
Multiplayer data + user name/id will be placed in a excel file.
How do I give multiple user_ids, so that with a single call, the API returns a list of multiple players?
api/get_user?k=(API_key)&type=id&u=(user_id) gives me a list of only 1 player,
api/get_user?k=(API_key)&type=id&u=(user_id)&u=(user_id)&u=(user_id) still only returns 1 player.
The problem is, I could make a loop that makes a call for every single user, but there could be to many users for the call limit of 60 per minute.
Situation: Get all user_ids from multiplayer lobby, then get every userprofile for the username.
Multiplayer data + user name/id will be placed in a excel file.