Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion packages/integration-platform/src/manifests/gcp/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ export const gcpManifest: IntegrationManifest = {
supportsRefreshToken: true,
authorizationParams: {
access_type: 'offline',
prompt: 'consent',
// select_account forces Google's account chooser so a user can switch
// from a wrong account when connecting/reconnecting; consent keeps the
// consent screen so a refresh token is always issued.
prompt: 'select_account consent',
},
setupInstructions: `## Platform Admin: Enable GCP OAuth

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ export const googleWorkspaceManifest: IntegrationManifest = {
supportsRefreshToken: true,
authorizationParams: {
access_type: 'offline',
prompt: 'consent',
// select_account forces Google's account chooser so an admin can switch
// from a wrong (e.g. non-admin) account when connecting/reconnecting;
// consent keeps the consent screen so a refresh token is always issued.
prompt: 'select_account consent',
},
setupInstructions: `To enable Google Workspace Admin SDK:
1. Go to Google Cloud Console (console.cloud.google.com)
Expand Down
Loading