Client-id as GET parameter with new twitch api

Can I pass client-id as GET parameter with new Twitch API?
for exampl with APIv5 I could send a get request like https://api.twitch.tv/kraken/users/1?client_id=XXXXX
in my project it is inconvenient to use a headers for parameter passing

No, header only for client ID or OAuth token.

You can’t send it in the querystring. You have to send either the client-id or an auth token in the header. If that’s inconvenient for you then you’ll either have to limit yourself to the v5 API until that eventually gets removed at some point in the future, or just use Helix and spend a few min to adjust your code to send the header.

Ok I see. Thans for the answers

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