Sign in

Poll for device token

documented

Polls the token endpoint with the device_code to obtain an access token after device authorization.

POST /oauth/tokenAuthentication APIno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://{{$AUTH0_DOMAIN}}/oauth/token" \
  -X POST \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Accept: application/json" \
  -d 'grant_type=client_credentials&client_id={{$AUTH0_CLIENT_ID}}&client_secret={{$AUTH0_CLIENT_SECRET}}&audience={{$AUTH0_AUDIENCE}}'
Poll for device token · Auth0 · OpenIntegrations