Website uses twitch to auth users for login and recently discovered the issue, when a user logs in to the site through one source they are logged out of the site on the other (different browser/device/ect).
Not knowing much about this area I am pretty much limited to googling so I’m wondering if this is a limitation or some sort of configuration problem, If anyone has some knowledge on the subject I would appreciate it
A new authorization will generate a new oauth token and invalidate the previous one. If you wish to allow simultaneous access from multiple browsers or devices, you should store the oauth token in your database (and run the API requests via your server) or allow an easy way to import/export the token (if a fully client-side application is desired).