This section is dedicated to the library for working with Dropbox API. On this page, all the steps necessary to start working are described
## Getting started
1. Login to [Dropbox Developers](https://www.dropbox.com/developers)

1. Go to **App Console**

2. Click on **Create app**

4. Enter a name for the new application and select **Full Dropbox**

5. After creation, on the application page, click **Scoped app** and select the permissions that are necessary to solve your problems. Save **AppKey** and **AppSecret**

6. Get the authorization link using the *GetAuthorizationLink()* function and pass it in the browser

7. Pass the **received code**, **AppKey** and **AppSecret** to the function *GetToken()*, save the received **access_token** and **refresh_token**
8. After the access_token lifetime expires, it can be updated using the function *RefreshToken()*