Handle Login
Processes the OAuth callback from an identity provider. Returns either a login token (existing user) or signup token (new user).
Authentication: None required
Authorization
BearerAuth JWT access token for internal API access. Requires 'private' scope for most endpoints, 'admin' scope for administrative operations.
In: header
Header Parameters
Define the version of the Connect protocol
1Define the timeout, in ms
Request Body
application/json
Type of account connection.
"ACCOUNT_CONNECTION_TYPE_UNSPECIFIED" | "ACCOUNT_CONNECTION_TYPE_GITHUB" | "ACCOUNT_CONNECTION_TYPE_DISCORD"Authorization code.
1 <= length <= 64State parameter for security.
uuidResponse Body
application/json
application/json
curl -X POST "https://auth.xeonr.io/xeonr.auth.private.v1.AuthService/HandleLogin" \ -H "Connect-Protocol-Version: 1" \ -H "Content-Type: application/json" \ -d '{}'{
"login": {
"token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...",
"expiresAt": "2023-01-15T01:30:15.01Z"
}
}{
"code": "not_found",
"message": "string",
"details": [
{
"type": "string",
"value": "string",
"debug": {}
}
]
}Get Redirect URLs POST
Returns OAuth redirect URLs for configured identity providers (GitHub, Discord, etc.) for an application. **Authentication:** None required
Handle Signup POST
Completes the signup process for new users by setting their username. Requires a valid signup token from HandleLogin. **Authentication:** None required (signup token required)