PubSub oAuth token help

It’s an implicit auth token, so it just comes with a different expire

  • User token - 4 hours (can refresh automatically)
  • Implict user token - 60 days can’t refresh automatically
  • App Access Token - No user, 60 days, can’t refresh (but server to server so you can make new token automatically)
  • OIDC user representation - JWT (not a token) returns a blob of user data - good for 15 minutes but can ignore the expiry (the blob represents user data at that time), the JWT can’t call any endpoints bar the OIDC userinfo, also returns a user access token, (comes in both regular and implicit forms)

Are the four types of token Twitch has

Shouldn’t of there is no refresh token for implicit auth tokens (tokens that last 60 days)