Sign In With Roboflow (Getting Started)
Let users sign in to your application with their Roboflow account using OAuth 2.1 and PKCE.
Create an OAuth App
Redirect URI examples
Redirect URI
Typical use
Authorization Flow
1
2
3
Exchange the code for tokens
curl -X POST https://app.roboflow.com/oauth/token \
-H "Content-Type: application/x-www-form-urlencoded" \
-d "grant_type=authorization_code" \
-d "client_id=YOUR_CLIENT_ID" \
-d "client_secret=YOUR_CLIENT_SECRET" \
-d "code=AUTHORIZATION_CODE" \
-d "redirect_uri=https://yourapp.com/callback" \
-d "code_verifier=YOUR_CODE_VERIFIER"Using OAuth Tokens
Validate a Token
Refresh a Token
Revoke a Token
User Info
Available Scopes
Identity Scopes
Scope
Description
API Scopes
Scope
Description
OIDC Discovery
Next steps
Last updated
Was this helpful?



