whoop-exchange-code-for-token
Convert WHOOP authorization code into access token to authenticate and access fitness data through the WHOOP API.
Instructions
Exchange authorization code for access token
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | Authorization code from OAuth callback |
Input Schema (JSON Schema)
{
"properties": {
"code": {
"description": "Authorization code from OAuth callback",
"type": "string"
}
},
"required": [
"code"
],
"type": "object"
}