Access Token Handling
Covers the handling of tokens for authentication purposes.
Grants an access token to an anonymous user.
Request Body
Name
Type
Description
{
access_token: string,
token_type: string,
refresh_token: string,
expires_in: number (long),
scope: string
}{
error: string,
error_description: string
}{
error: string,
error_description: string
}curl -d "client_id=YourClientId&client_secret=YourClientSecret&grant_type=anonymous" https://api.us.snapscreen.com/oauth/tokenLast updated
Was this helpful?