AI-generated Key Takeaways
-
An authentication response is returned by the authentication server after a user signs in.
-
The response includes fields for the authorization code, error details, and redirect URI.
-
Error details contain an error type and a human-readable description of the error.
A response from the authentication server once the user signs-in.
JSON representation |
---|
{
"code": string,
"errorDetails": {
object ( |
Fields | |
---|---|
code |
The authorization code that the client exchanges for an access token. |
errorDetails |
The error details from the authentication server. |
redirectUri |
Redirect URI. |
ErrorDetails
The message containing error details.
JSON representation |
---|
{
"error": enum ( |
Fields | |
---|---|
error |
An error which the server adds to the redirect URL. |
errorDescription |
A human-readable description of the error. |