[SOLVED] GET helix/users does not work with app access token

That’s your issue. If you look at Getting OAuth Access Tokens | Twitch Developers or your console.log( response ) you’ll see that the response from Twitch has no key called accessToken, so response.accessToken is undefined and you’re trying to use Bearer undefined as your Authorization header.

It should be return response.access_token

1 Like