oauth_access
Overview
Retrieves the OAuth access token.
Available APIs
- REST
Definition
oauth_access()
Parameters
| Name | Type | Description |
|---|---|---|
| session | String | Session ID returned by a previous login call. |
Result
| Name | Type | Description |
|---|---|---|
| result | Array | The call result. |
| result.id | String | The OAuth access token. |
Change Log
| Version | Change | |
|---|---|---|
| v4 | Added oauth_access method. | |
Examples
PHP
$oauth_access_parameters = array(
//Session id
'session' => $session_id,
);