Authentication
API Credentials
Key
Description
Obtaining API Credentials
Getting an Access Token
curl -X POST "https://auth.raalabs.io/oauth2/token" \
-u YOUR_CLIENT_ID:YOUR_CLIENT_SECRET \
-d "grant_type=client_credentials"import requests
url = "https://auth.raalabs.io/oauth2/token"
response = requests.post(
url,
auth=("YOUR_CLIENT_ID", "YOUR_CLIENT_SECRET"),
data={"grant_type": "client_credentials"},
)
token = response.json()["access_token"]Header
Value
Refreshing Access Tokens
Last updated
Was this helpful?