Google Cloud Service Account Auth
Authenticate with Google APIs using a service account
Input
Attribute | Data type | Mandatory? | Description |
---|---|---|---|
serviceAccountKeyJson | String | Yes | The Google Service account you want to authenticate with, as a raw JSON string. See the example below. |
scopes | String | Yes | The Google API scopes you want to authenticate for, as a raw JSON string. For example: ["https://www.googleapis.com/auth/bigquery"] |
Example of a service account key JSON
{
"type": "service_account",
"project_id": "your-project-id",
"private_key_id": "your-private-key-id",
"private_key": "-----BEGIN PRIVATE KEY-----\nYOUR-PRIVATE-KEY\n-----END PRIVATE KEY-----\n",
"client_email": "your-service-account-email@your-project-id.iam.gserviceaccount.com",
"client_id": "your-client-id",
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
"token_uri": "https://oauth2.googleapis.com/token",
"auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
"client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/x509/your-service-account-email@your-project-id.iam.gserviceaccount.com",
}
Output
Attribute | Data type | Mandatory? | Description |
---|---|---|---|
token | String | No | Authenticated bearer token. |
expiresAt | String | No | Time at which your token will expire. This is 1 hour from the time at which you retrieved the token. |