Token From Oauth1

Deprecated
View as MarkdownOpen in Claude
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_tokenstringRequired>=1 character
The supplied OAuth 1.0 access token.
oauth1_token_secretstringRequired>=1 character
The token secret associated with the supplied access token.

Response headers

X-Dropbox-Request-IdstringOptional
A unique identifier for the request, useful for debugging and support.

Response

Successful response
oauth2_tokenstring>=1 character
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