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

External Authentication

GET
https://api.lootlocker.com/client/v3/config/external-authentication
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.lootlocker.com/client/v3/config/external-authentication?title_id=01JFHK0B18KD582BY1D882HKKS&environment_id=01JFHK0B2460NS2WHM3PNKFH4W'
Response Response Example
200 - Success
{
  "identity_providers": [
    {
      "id": "credentials",
      "name": "Email & Password",
      "claim_type": "https://api.lootlocker.com/v3/client/oauth/grant-type/credentials",
      "settings": {}
    },
    {
      "id": "apple",
      "name": "AppleID",
      "claim_type": "https://api.lootlocker.com/v3/client/oauth/grant-type/implicit-apple-rest",
      "settings": {
        "client_id": ""
      }
    }
  ]
}

Request

Query Params
title_id
string 
required
Example:
01JFHK0B18KD582BY1D882HKKS
environment_id
string 
required
Example:
01JFHK0B2460NS2WHM3PNKFH4W

Responses

🟢200OK
application/json
Body
identity_providers
array [object {4}] 
required
id
string 
required
name
string 
required
claim_type
string 
required
settings
object 
required
🟠400Error: Bad Request
Next
List Player Identity Providers
Built with