Google Workspace / Gmail Domain Level OAuth Permissions
If you are looking to provide organization level OAuth token to provide all users access to our Flurp, this is the article for you.
To add domain-wide delegation with Google Workspace / Gmail you will need to create a Google Service account by following the following steps:
- Go to Google Cloud Console
- Create a new project or select existing one
- Navigate to "IAM & Admin" > "Service Accounts"
- Create a new service account
- Download the JSON credentials file
- Enable Domain-Wide Delegation:
- Select the service account
- Edit
- Enable "Domain-wide Delegation"
- This will generate a Client ID
- Configure in Google Workspace:
- Login as Super Admin to Google Workspace Admin Console
- Go to Security > API Controls
- Find "Domain-wide Delegation"
- Click "Add new"
- Enter the Client ID from your service account
Add the required OAuth scopes (permissions) Netarx Flurp requires:
scope: [
'https://www.googleapis.com/auth/userinfo.profile',
'https://www.googleapis.com/auth/userinfo.email',
'https://www.googleapis.com/auth/gmail.labels',
'https://www.googleapis.com/auth/calendar',
'https://www.googleapis.com/auth/calendar.events',
'https://www.googleapis.com/auth/gmail.send',
'https://www.googleapis.com/auth/gmail.metadata',
'https://www.googleapis.com/auth/meetings.space.readonly',
],
You should be all set! Now when you add new users with our Bulk deployment Powershell scripts, and then once these users click verify in their email, they will be active, they will not each need to individually add OAuth tokens.