Hello Guys,
I’m working with the clips discovery api very well, but doing some testing using limit query string parameter to pagination “load more” sometimes return error from server.
Passing limit value 32 for init load for example, works fine.
But when a click at button “load more”, passing limit value 48 are return {“error”:“Internal Server Error”,“status”:500,“message”:""}
working
curl -H ‘Accept: application/vnd.twitchtv.v4+json’
-H ‘Client-ID: xxxxxxx’
-X GET ‘https://api.twitch.tv/kraken/clips/top?limit=32&period=day&game=Overwatch’
not working
curl -H ‘Accept: application/vnd.twitchtv.v4+json’
-H ‘Client-ID: xxxxxxx’
-X GET ‘https://api.twitch.tv/kraken/clips/top?limit=48&period=day&game=Overwatch’
{“error”:“Internal Server Error”,“status”:500,“message”:""}
Thanks,