This is the starting point for user authentication. The Altostrat web application redirects the userโs browser to this endpoint to begin the OAuth 2.0 Authorization Code Flow with PKCE.
Specifies the response type. code is used for the Authorization Code Flow.
code, token, id_token, code token, code id_token, token id_token, code token id_token The application's unique identifier.
The URL to which the user is redirected after authentication. Must be an allowed callback URL.
A space-separated list of permissions. offline_access is required to receive a refresh token.
An opaque value used to prevent CSRF attacks.
The Base64-URL-encoded hash of the code_verifier.
The method used to generate the challenge. S256 is recommended.
S256, plain Redirects the user to the Altostrat login page. After success, redirects back to the redirect_uri.