I can't see all videos from video api

Here, I can see 4 videos.
But when i call video api (https://api.twitch.tv/helix/videos?user_id=124605286)
I can see only one video.

{"data":[{"id":"75183756","user_id":"124605286","title":"블소메이트 3화","description":"3화","created_at":"2016-06-29T07:43:41Z","published_at":"2016-06-29T07:43:41Z","url":"https://www.twitch.tv/videos/75183756","thumbnail_url":"https://static-cdn.jtvnw.net/s3_vods/4bdf4298e7_bnstournament_21953471440_472945911//thumb/thumb75183756-%{width}x%{height}.jpg","viewable":"public","view_count":298,"language":"ko","type":"highlight","duration":"35m6s"}],"pagination":{"cursor":"eyJiIjpudWxsLCJhIjp7Ik9mZnNldCI6MjB9fQ"}}

I think it is related with this issue → (Helix API) Videos Endpoint - "Upload" Query Parameter Issues - API - Twitch Developer Forums

And I guess I can’t get “upload” type videos from this api.

Can you explain why this happend?

As explained in the Helix API reference, https://dev.twitch.tv/docs/api/reference/#get-videos

The get-videos endpoint will only return one video per User ID.

From the reference;
“Gets video information by video ID (one or more), user ID (one only), or game ID (one only).”

However, if you take a look at the reference (linked above) you will see something along the lines of “pagination”. This would be how you would get more than one video returned by using the cursor in the response.

I think you misunderstood reference.
“Gets video information by video ID (one or more), user ID (one only), or game ID (one only).”
this mean is not about response, it is about request.
For example, I can send multiple video ID, but game ID parameter should be only one.

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