Sign in

Token

documented

Token endpoint to exchange authorization codes for tokens.

POST /oauth2/v1/tokenOAuth 2.0no 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://{{$okta_domain}}/oauth2/v1/token" \
  -X POST \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Accept: application/json" \
  -d 'grant_type=client_credentials' \
  -d 'scope={{$scope}}' \
  -d 'client_id={{$client_id}}' \
  -d 'client_secret={{OKTA_SECRET}}'
Token · Okta · OpenIntegrations