public sealed class OAuthToken : IMessage<OAuthToken>, IEquatable<OAuthToken>, IDeepCloneable<OAuthToken>, IBufferMessage, IMessage
Contains information needed for generating an
OAuth token.
This type of authorization should generally only be used when calling Google
APIs hosted on *.googleapis.com.
Service account email
to be used for generating OAuth token.
The service account must be within the same project as the queue. The
caller must have iam.serviceAccounts.actAs permission for the service
account.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-04-17 UTC."],[[["This webpage details the `OAuthToken` class, which is integral for generating OAuth tokens specifically for Google APIs on \\*.googleapis.com."],["The `OAuthToken` class, found within the `Google.Cloud.Tasks.V2` namespace, is implemented using several interfaces including `IMessage`, `IEquatable`, and `IDeepCloneable`."],["The class provides properties such as `Scope` and `ServiceAccountEmail`, where `Scope` defines the OAuth scope (defaulting to \"[https://www.googleapis.com/auth/cloud-platform](https://www.googleapis.com/auth/cloud-platform)\") and `ServiceAccountEmail` specifies the service account for token generation."],["There are multiple versions of this class, with version 3.5.0 as the latest version, and the page also provides access to versions as early as 2.2.0, each version is represented by its link."],["The class includes two constructors, a default `OAuthToken()` and `OAuthToken(OAuthToken other)`, which allows you to create new instances or copy existing ones."]]],[]]