-
Notifications
You must be signed in to change notification settings - Fork 78
Account Public Service
Joe edited this page Jan 13, 2020
·
1 revision
The base URL for this service is https://account-public-service-prod.ol.epicgames.com
. Other URLs include https://account-public-service-prod03.ol.epicgames.com
, https://account-public-service-prod-m.ol.epicgames.com
and https://account-public-service-stage.ol.epicgames.com
.
An example service request used for getting an access token:
POST https://account-public-service-prod.ol.epicgames.com/account/api/oauth/token HTTP/1.1
Authorization: basic MzhkYmZjMzE5NjAyNGQ1OTgwMzg2YTM3YjdjNzkyYmI6YTYyODBiODctZTQ1ZS00MDliLTk2ODEtOGYxNWViN2RiY2Y1
Content-Type: application/x-www-form-urlencoded
grant_type=client_credentials&token_type=eg1
token_type
with value eg1
can be appended to return a JWT token - or, you can optionally not append token_type
and receive a 32 character token that works in the same way.