Get Google One Tap configuration

GET /api/google-one-tap/config

Get the Google One Tap configuration for client-side integration.

Responses

  • 200 application/json

    The Google One Tap configuration was retrieved successfully.

    Hide response attributes Show response attributes object
  • No content for OPTIONS requests

  • The connector configuration is invalid

  • Access forbidden, either due to CORS restrictions or feature not enabled

  • Google connector not found

GET /api/google-one-tap/config
curl \
 --request GET 'https://[tenant_id].logto.app/api/google-one-tap/config' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "clientId": "string",
  "oneTap": {
    "isEnabled": true,
    "autoSelect": true,
    "closeOnTapOutside": true,
    "itpSupport": true
  }
}