Cannot get multiple users

The API reference states you can get up to 100 users but if I try to do more than more separated by a comma I get the following error response.

{ error: 'Bad Request',
  status: 400,
  message: 'Invalid login names, emails or IDs in request' }

It works if I do users individually but not if I try to do multiple ones.

You’re getting the error because you’re doing it wrong.

Request parameters are &-repeated (e.g., &login=&login=&login= ), not comma-separated as in Twitch API v5. As specified in the API Guide docs Twitch API Concepts | Twitch Developers

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.