cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Announcements
Want to learn some quick and useful tips to make your day easier? Check out how Calvin uses Replay to get feedback from other teams at Dropbox here.

Discuss Dropbox Developer & API

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

How to create a Dropbox Authorization to build our own app using c#

How to create a Dropbox Authorization to build our own app using c#

venkatesh_sana
New member | Level 2

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.

1 Reply 1

Greg-DB
Dropbox Staff

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.

Need more support?
Who's talking

Top contributors to this post

  • User avatar
    Greg-DB Dropbox Staff
What do Dropbox user levels mean?