I'm trying to set up access to DropBox for some "enterprisey" tasks (we have a shared DropBox workspace where I work).
I've registered an OAuth2 app and went through https://www.dropbox.com/oauth2/authorize to get an authorization code and then used POST to https://api.dropbox.com/oauth2/token to exchange the code for a token.
Question:
The access token starts with "sl." which as I understand means is a short-lived token. There is an "expires_in: 14400" stanza which is 4 hours.
How can I get a non-expiring, permanent token?
My app is in "Development" status - is that why? I was not planning to apply for Production status because the "app's" only purpose is to get an access token, but if that's why, then I will have to.
Any recommendations?