Steve Esemplare - 2017-05-10 13:26:54
I am running into an issue with using the classes (they are EXCELLENT BTW), where it looks like the cookie value for a session is overwritten resulting in new sessions, thus losing the auth token from a previous call.
As an example, I want to be able to get an access token from Pinterest and Dropbox on Page A, then on Page B make a call to both to retrieve user info.
1. If I auth to Pinterest on Page A, then go to Page B to get the user info - it works perfectly. Cookie is set to the session correctly.
2. Then I clear the auth.
3. If I auth to Dropbox on Page A, then go to Page B to get the user info - it works perfectly. Cookie is set to the session correctly.
4. Then I clear the auth.
5. If I auth Pinterest on Page A, then auth to Drop Box on Page, when I go to Page B to retrieve the user info, new sessions (and cookie value) are created and the access token is now blank.
It looks to me like the session is being pulled from the cookie, I could see if the cookie supports multiple values. Can you provide some guidance?