View source: R/authentication.R
| getToken | R Documentation |
Get a 2-legged token for OAuth-based authentication to the AutoDesk Platform Services (APS).
getToken(id = NULL, secret = NULL, scope = "data:write data:read")
id |
A string. Client ID for the app generated from the AutoDesk Dev Portal. |
secret |
A string. Client Secret for the app generated from the AutoDesk Dev Portal. |
scope |
A string. Space-separated list of required scopes. May be
|
An aps_token object containing the access_token,
token_type, expires_in, and expires_at. The token can
be passed directly to other AutoDeskR functions. Use
is_expired to check whether the token needs refreshing.
Legacy access via resp$content$access_token continues to work.
## Not run:
tok <- getToken(id = Sys.getenv("client_id"), secret = Sys.getenv("client_secret"),
scope = "data:write data:read")
myToken <- tok$access_token
is_expired(tok)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.