ridermansb
ridermansb

Reputation: 11069

OAuth and Dropbox api

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.

Request error

See full image

I'm using a library to work with OAuth called jsOAuth

Console Error

Error

See full image

I published this application: Here the full code

Notes

Thank you all for your help!

Upvotes: 1

Views: 1711

Answers (1)

Greg
Greg

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

Related Questions