1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-16 11:38:11 +02:00
OpenIntegrations/docs/en/md/Dropbox/Account-and-authorization/Get-token.md
2024-07-10 14:11:17 +03:00

1.0 KiB

sidebar_position
2

Get token

Gets token based on the code from the GetAuthorizationLink page


Function GetToken(Val AppKey, Val AppSecret, Val Code) Export

Parameter CLI option Type Destination
AppKey --appkey String Application key
AppSecret --appsecret String Application secret
Code --code String Code from the authorization page

Returns: Map Of KeyAndValue - serialized JSON response from Dropbox


AppKey = "oynqxds...";
 AppSecret = "tk2oewn...";
 Code = "bTCiUTzxe6kAAAAAAAAAGN1NMZIxyqETKr4o7OS2dU8";
 
 Result = OPI_Dropbox.GetToken(AppKey, AppSecret, Code);
 
 oint dropbox GetToken --appkey "oynqxds..." --appsecret "tk2oewn..." --code "bTCiUTzxe6kAAAAAAAAAGN1NMZIxyqETKr4o7OS2dU8"

{
 "error": "invalid_grant",
 "error_description": "code doesn't exist or has expired"
}