Authentication
Complete OAuth authentication.
Completes OAuth authentication flow and returns authentication tokens
get/auth/{provider}/callback
Path parameters
providerstring required
OAuth provider (e.g., 'google', 'github')
Response
Authentication tokens
Example response
{
"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"expires_at": "2025-04-25T12:00:00Z",
"refresh_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
}