Token From Oauth1
Creates an OAuth 2.0 access token from the supplied OAuth 1.0 access token.
**Endpoint format:** [RPC](https://docs.dropboxapi.com/dropbox-api/docs/technical-reference/request-response-formats#rpc-endpoints)
**Authentication:** [App](https://docs.dropboxapi.com/dropbox-api/docs/auth-types#app-authentication)
Authentication
AuthorizationBearer
App-level OAuth 2.0 token (no user context). Use Authorization: Bearer <token>.
Obtain by calling the token endpoint with grant_type=client_credentials.
Only available on endpoints that declare app auth support.
Request
This endpoint expects an object.
oauth1_token
The supplied OAuth 1.0 access token.
oauth1_token_secret
The token secret associated with the supplied access token.
Response headers
X-Dropbox-Request-Id
A unique identifier for the request, useful for debugging and support.
Response
Successful response
oauth2_token
The OAuth 2.0 token generated from the supplied OAuth 1.0 token.
Errors
401
Unauthorized Error
403
Forbidden Error
409
Conflict Error
429
Too Many Requests Error
500
Internal Server Error