Thanks for this info. Sounds like the issue goes away if you use client-side authentication. I am using -- and prefer to continue to use -- server-side authentication:
1. Request authenticate/?response_type=code&client_id=...&redirect_url=<REDIRECT>
-> User is presented with first-party website to login.
2. On login, website redirects to REDIRECT?code=<CODE> (third-party) with access **code**
-> Third-party requests authenticate/?response_type=token&client_id=...
&client_secret=...&redirect_url=...&code=<CODE>
-> First-party responds with JSON containing access **token**
3. Third-party delivers access token to client.
What I understand is that the token delivered in step 3 should be the same across logins to multiple devices, but it is not in my situation.
-Greg
--
Greg Fiumara