OpenID Connect & OAuth 2....
/
/device/authorize
CORS
Returns a user code, device code, activation link, and QR code activation link
Obtained during either manual client registration or through the Dynamic Client Registration API. It identifies the client and must match the value preregistered in Okta.
POST
curl -i -X POST \
https://okta-subdomain.pixtulate.com/oauth2/v1/device/authorize \
-H 'Content-Type: application/x-www-form-urlencoded' \
-d client_id=string \
-d scope=stringBased on the type of token and whether it's active, the returned JSON contains a different set of information.
The minimum amount of time in seconds that the client should wait between polling requests to the token endpoint
Response
{ "user_code": "RGTCFDTL", "device_code": "5cbeb234-7e00-4ff7-9aa2-b1a4558a75d2", "interval": 5, "verification_uri_complete": "https://{yourOktaDomain}/activate?user_code=RGTCFDTL", "verification_uri": "https://{yourOktaDomain}/activate", "expires_in": 600 }