Sign in

Request device code

documented

Starts the OAuth 2.0 Device Authorization Flow by obtaining a device_code and user_code.

POST /oauth/device/codeAuthentication 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/device/code" \
  -X POST \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Accept: application/json" \
  -d "client_id={{$AUTH0_CLIENT_ID}}&scope={{$scope}}"
Request device code · Auth0 · OpenIntegrations