Reputation: 11069
I'm trying to use the API dropbox.
Once the authentication window is opened, a message is displayed:
This session has expired. Please return to the app to try again.
I'm using a library to work with OAuth called jsOAuth
Console Error
I published this application: Here the full code
Thank you all for your help!
Upvotes: 1
Views: 1711
Reputation: 16940
That error message means the request token used for that authentication session is no longer valid, likely because a timeout has passed. (The request token is only good for a certain amount of time.) You need to start over with a new request token.
Upvotes: 2