Need some help with auth tokens [TwitchLib]

First off, don’t use 3rd party sites to generate tokens as they can’t be refreshed so every time the token expires you’ll have to go through the whole process over again, and there’s an inherent security risk of using some other developers OAuth flow who’s not associated with Twitch.

If you’re making requests server-side, use the Authorization Code Flow
If you’re making requests client-side (such as in a web browser), use the Implicit Flow

Secondly, in your call to GetBroadcasterSubscriptions you’re passing the accounts login, ie "zoliking", but the API request requires broadcaster_id to be the accounts id, so you’re passing in the wrong thing.