Skip to content

Instantly share code, notes, and snippets.

@nyamadan
nyamadan / id-token.ts
Created January 21, 2024 08:59
ID token for Google APIs using a service account, using standard library.
// https://cloud.google.com/run/docs/authenticating/service-to-service
export interface IdTokenError {
error: string;
error_description: string;
}
export interface IdTokenSuccess extends IdToken {
error?: never;
}