How can I get all subscribers with Get Users Follows?
I have already tried ‘first’ but I can only get up to 100, I would like to get all of them, with the new API.
Thank you
How can I get all subscribers with Get Users Follows?
I have already tried ‘first’ but I can only get up to 100, I would like to get all of them, with the new API.
Thank you
Subscribers are not followers
Subscribers are people whom pay money to a streamer
Followers are people whom follow the stream/get live notifications and don’t pay
You are given a cursor, use the cursor with after
https://api.twitch.tv/helix/users/follows?to_id=<user ID>&first=100&after=THECURSOR
Yes, you’re right, I had the wrong method.
I wanted to put the Get Broadcaster Subscriptions, I must put the same ‘after = THECURSOR’ and could you explain what ‘THECURSOR’ is?
Where should I send the cursor?
As the query string parameter after
Helix is uniform in it’s usage of after for pagination using the cursor
When do I know if pagination is necessary?
If any of the following criteria are true then you may need to paginate
first parameterI’ve already done it, thanks