You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A .NET SDK for integrating with the Dropbox API v2 (preview version).
4
+
5
+
## Setup
6
+
7
+
To get started with Dropbox.NET, we recommend you add it to your project using NuGet.
8
+
9
+
To install `Dropbox.Api`, run the following command in the Package Manager Console:
10
+
11
+
```PM> Install-Package Dropbox.Api -Pre```
12
+
13
+
## Creating an application
14
+
15
+
You need to create an Dropbox Application to make API requests.
16
+
17
+
- Go to https://dropbox.com/developers/apps.
18
+
19
+
## Obtaining an access token
20
+
21
+
All requests need to be made with an OAuth 2 access token. To get started, once
22
+
you've created an app, you can go to the app's console and generate an access
23
+
token for your own Dropbox account.
24
+
25
+
## Examples
26
+
27
+
Several examples can be found in the examples directory:
28
+
* SimpleBlogDemo - (something here about the blog demo)
29
+
30
+
## Documentation
31
+
32
+
You can find out more details in the [full documentation for the Dropbox.NET SDK](http://dropbox.github.io/dropbox-sdk-dotnet/html/R_Project_DotNetApiDocumentation.htm).
0 commit comments