Livecode Wiki
Advertisement

Get information about a user's account.

Syntax:

dropboxGetAccount ''pAccessToken'', ''pUserAccountID'', [''pCallback'']

Parameters:

  • pAccessToken: An OAuth2 Access token to access the user's account
  • pUserAccountID: The user's unique Dropbox ID
  • pCallback: The handler to call when the request is complete. If empty the command will block until complete. Requires tsNet with LiveCode Indy License.

If the callback parameter is not empty the request will be asynchronus and when complete the callback will be sent to the object that accessed the API.

The callback will be sent with three parameters:

  • The request ID which will be the value of the it variable after calling the command
  • The HTTP response code
  • The data returned which will be the same data as documented for the it variable in a synchronous request.

Output values:

  • The result: An error if the HTTP request failed
  • It: For asynchronous requests it will contain a request ID. This may be used with

tsNet's tsNetGetStatus function. If the request is synchronous and successful the it variable will be a UTF-8 encoded JSON string in the form:

{
"account_id": string,
"name": {
"given_name": string,
"surname": string,
"familiar_name": string,
"display_name": string,
"abbreviated_name": string
},
"email": string,
"email_verified": boolean,
"disabled": boolean,
"is_teammate": boolean,
"profile_photo_url": string
}

If an error occurred the JSON string will be in the following form:

{
"error_summary": string,
"error": {
".tag": string
}
}
Advertisement