I am attempting to take a list of game_id’s obtained from https://api.twitch.tv/helix/streams and get the game names.
The documentation says that it will take up to 100 id’s. However, I am getting variable number of returned values. If I request 20, I get back 15. If I request 16, I get back 12. If I request 11, I get back 8. Etc. It appears the most that actually works is 4.
Example request:
https://api.twitch.tv/helix/games?id=29595&id=493217&id=417752&id=21779&id=29595&id=138585&id=493057&id=494717&id=21779&id=488191&id=138585&id=26936&id=491168&id=494717&id=32399&id=18122&id=495589&id=743&id=493057&id=495061
Am I doing something wrong or is the system malfunctioning?
(This approach works fine for getting user names from user_id’s)
Edit: A couple hours later and now the results are returning as expected. Made no changes on my end.