When I try to get clips for a user I get no data in the response. Ex:
{“data”:,“pagination”:{}}
I also found that I didn’t specify a scope for my token, so I suspect that may have something to do with it. Is there a scope that would be appropriate for getting clips for a given user? I see clips:edit in the list of scopes. Is there a clips:read as well? Or is this a separate issue? Thanks for the help.
This returns data/pagination, so it seems it’s pointing the the right place, but there are no values. Do I need a different param instead of ID?
I WAS able to get a correct response with this using my same bearer/client-Id, so I know they at least work for this type of user data request:
curl -X GET “https://api.twitch.tv/helix/users?login=twitch” ^ -H “Authorization: Bearer **************” ^ -H “Client-Id: *******************”
I did validate my token and it says “scopes”:null, which is why I thought that could be a factor, but yet I am able to use it for some calls it seems. Appreciate any help!
Great, thanks. I was able to get the response of a specific clip using that clip ID.
I am trying to find clips for a given user, so I must’ve gotten the IDs confused. As you said I need to use broadcaster_id (I’ll have to go back through the documentation on how to find get broadcaster_id)