Get OAuth Access Token
documentedExchange client credentials or authorization grant for an access token.
POST /v2/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://api.producthunt.com/v2/oauth/token" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"client_id":"{{$client_id}}","client_secret":"{{$client_secret}}","grant_type":"client_credentials"}'