Show / Hide Table of Contents

Class GoogleAssertionTokenRequest

Service account assertion token request as specified in https://developers.google.com/accounts/docs/OAuth2ServiceAccount#makingrequest.

Inheritance
System.Object
TokenRequest
GoogleAssertionTokenRequest
Inherited Members
TokenRequest.Scope
TokenRequest.GrantType
TokenRequest.ClientId
TokenRequest.ClientSecret
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Auth.OAuth2.Requests
Assembly: Google.Apis.Auth.dll
Syntax
public class GoogleAssertionTokenRequest : TokenRequest

Constructors

GoogleAssertionTokenRequest()

Constructs a new refresh code token request and sets grant_type to urn:ietf:params:oauth:grant-type:jwt-bearer.

Declaration
public GoogleAssertionTokenRequest()

Properties

Assertion

Gets or sets the JWT (including signature).

Declaration
[RequestParameter("assertion")]
public string Assertion { get; set; }
Property Value
Type Description
System.String

Extension Methods

TokenRequestExtenstions.ExecuteAsync(TokenRequest, HttpClient, String, CancellationToken, IClock)
Back to top