Request device code
documentedStarts the OAuth 2.0 Device Authorization Flow by obtaining a device_code and user_code.
POST /oauth/device/codeAuthentication APIno implementation yet0 runsNo 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}}"