Get GCP OAuth Sign-In Details
Retrieves OAuth client ID and PKCE challenge required for initiating GCP OAuth flow in express configuration. The response includes the client ID for constructing the authorization URL and a code challenge for PKCE security.
Responses
- 200
- 400
- 403
- 500
Success
- application/json
- Schema
- Example (from schema)
Schema
- clientId string
OAuth client ID for GCP authentication
- errorCode boolean
Indicates whether the operation was successful
- errorMessage string
Error message if the operation failed
{
"clientId": "string",
"errorCode": true,
"errorMessage": "string"
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
- errorMessage string
- errorCode int32
{
"errorMessage": "string",
"errorCode": 0
}
Forbidden
- application/json
- Schema
- Example (from schema)
Schema
- errorMessage string
- errorCode int32
{
"errorMessage": "string",
"errorCode": 0
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
Schema
- errorMessage string
- errorCode int32
{
"errorMessage": "string",
"errorCode": 0
}
Loading...