Auth Client API
HomeLootLocker
HomeLootLocker
LootLocker
  1. OAuth
  • V3
    • Config
      • External Authentication
      • List Player Identity Providers
    • OAuth
      • Impersonation
        POST
      • Authorize
        GET
      • Token
        POST
      • Token Exchange
        POST
      • Grant Type
        GET
    • Remote
      • Lease
      • Lease
      • Claim
      • Verify
      • Authorize
  1. OAuth

Authorize

GET
https://api.lootlocker.com/client/v3/oauth/authorize
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://api.lootlocker.com/client/v3/oauth/authorize?redirect_uri={{client_oauth_redirect_uri}}&response_type=code&state=state&client_id={{game_api_key}}'
Response Response Example
{
    "error": "invalid_request",
    "error_description": "The redirect_uri url parameter needs to match http://local.auth.game:5003"
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params
redirect_uri
string 
required
Example:
{{client_oauth_redirect_uri}}
response_type
string 
required
Example:
code
state
string 
required
Example:
state
client_id
string 
required
Example:
{{game_api_key}}

Responses

🔵302Success (Redirect)
text/plain
Body
object {0}
🟠400Error: Invalid Redirect URI
🔵302Error (Redirect): Bad Request
Previous
Impersonation
Next
Token
Built with