Obtain OAuth token
documentedExchange an authorization code (or perform client credentials flow) for an access token.
POST /oauth/tokenOAuthno 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://www.universe.com/oauth/token" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"grant_type": "client_credentials", "client_id": "{{$client_id}}", "client_secret": "{{$client_secret}}"}'