Clips Discovery API - limit query parameter not working

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,

Weird! It seems to be any limit >= 37. I’m chatting with the engineers about this. Back with you as soon as I can!

Ok,

Tks

I’m seeing the same issue, also with any limit >= 37.

Actually, for many games it fails with limit=36, maybe it’s not specifically the limit that fails, but the length of the response that’s causing the issue.

We reverted some code. Could you try again and see if this is still happening?

Looks like it’s working as intended now

sure,
Its working fine now.
Tks

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