Discuss Dropbox Developer & API
To build our own app we are creating a dropbox account we are calling to a dropbox api in that i didnt get the complete details for creating the developer account here is the syntax of the dropbox api : "https://www.dropbox.com/1/oauth2/authorize?client_id="+<app key>&response_type=code&redirect_uri=<redirect URI>&state=<CSRF token> .
I didnt get about the state parameter like state=<CSRF token> how to get that csrf token and how to authentcate and get the access token and refresh token.
Dropbox uses OAuth 2 to handle app authorization. You can find more information on how the OAuth flow works in the OAuth guide, and you can find the documentation for our OAuth 2 endpoints here. Note that Dropbox only uses access tokens, not refresh tokens.
The state parameter is:
"Up to 500 bytes of arbitrary data that will be passed back to your redirect URI. This parameter should be used to protect against cross-site request forgery (CSRF). See Sections 4.4.1.8 and 4.4.2.5 of the OAuth 2.0 threat model spec."
To protext against CSRF attacks, the value should be unguessable, random, arbitrary data that your app generates. Please refer to the above links for more information. You can additionally use it to store any application state you need to pass through the app authorization flow.
We highly recommend using one of the official SDKs though, such as the official Dropbox API v2 .NET SDK, as they do most of the work for you.
Hi there!
If you need more help you can view your support options (expected response time for a ticket is 24 hours), or contact us on Twitter or Facebook.
For more info on available support options, see this article.
If you found the answer to your question, please 'like' the post to say thanks to the user!