How can i see json page for 'Get Channel Followers'

Hi
i want to see follower about specific channel
so i use Twitch v5 API->Get Channel Followers
reference: (https://dev.twitch.tv/docs/v5/reference/channels#get-channel-followers)

typing URL like below:

(https://api.twitch.tv/kraken/channels/44322889/follows&client_id=’’)

but it is not working…
what do i wrong?

To use v5 endpoints, you have to specify in the URL (or preferably in Headers) the API version. also, replace the & in your example with a ? to designate the beginning of a query string

https://api.twitch.tv/kraken/channels/44322889/follows?client_id=<your client id>&api_version=5

Also consider the New API for this data https://dev.twitch.tv/docs/api/reference#get-users-follows

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