Class GoogleAuthorizationCodeRequestUrl (1.60.0)

public class GoogleAuthorizationCodeRequestUrl : AuthorizationCodeRequestUrl

Google-specific implementation of the OAuth 2.0 URL for an authorization web page to allow the end user to authorize the application to access their protected resources and that returns an authorization code, as specified in https://developers.google.com/accounts/docs/OAuth2WebServer.

Inheritance

object > AuthorizationRequestUrl > AuthorizationCodeRequestUrl > GoogleAuthorizationCodeRequestUrl

Namespace

GoogleApisAuthOAuth2Requests

Assembly

Google.Apis.Auth.dll

Constructors

GoogleAuthorizationCodeRequestUrl(Uri)

public GoogleAuthorizationCodeRequestUrl(Uri authorizationServerUrl)

Constructs a new authorization code request with the given authorization server URL. This constructor sets the AccessType to offline.

Parameter
NameDescription
authorizationServerUrlUri

Properties

AccessType

[RequestParameter("access_type", RequestParameterType.Query)]
public string AccessType { get; set; }

Gets or sets the access type. Set online to request on-line access or offline to request off-line access or null for the default behavior. The default value is offline.

Property Value
TypeDescription
string

ApprovalPrompt

[RequestParameter("approval_prompt", RequestParameterType.Query)]
[Obsolete("Unused for Google OpenID; use the 'Prompt' property instead.")]
public string ApprovalPrompt { get; set; }

Gets or sets prompt for consent behavior auto to request auto-approval orforce to force the approval UI to show, or null for the default behavior.

Property Value
TypeDescription
string

IncludeGrantedScopes

[RequestParameter("include_granted_scopes", RequestParameterType.Query)]
public string IncludeGrantedScopes { get; set; }

Gets or sets the include granted scopes to determine if this authorization request should use incremental authorization (https://developers.google.com/+/web/api/rest/oauth#incremental-auth). If true and the authorization request is granted, the authorization will include any previous authorizations granted to this user/application combination for other scopes.

Property Value
TypeDescription
string
Remarks

Currently unsupported for installed apps.

LoginHint

[RequestParameter("login_hint", RequestParameterType.Query)]
public string LoginHint { get; set; }

Gets or sets the login hint. Sets email address or sub identifier. When your application knows which user it is trying to authenticate, it may provide this parameter as a hint to the Authentication Server. Passing this hint will either pre-fill the email box on the sign-in form or select the proper multi-login session, thereby simplifying the login flow.

Property Value
TypeDescription
string

Nonce

[RequestParameter("nonce", RequestParameterType.Query)]
public string Nonce { get; set; }

Gets or sets the nonce; a random value generated by your app that enables replay protection. See https://developers.google.com/identity/protocols/OpenIDConnect for more details.

Property Value
TypeDescription
string

Prompt

[RequestParameter("prompt", RequestParameterType.Query)]
public string Prompt { get; set; }

Gets of sets prompt for consent behaviour. Value can be null, "none", "consent", or "select_account". See OpenIDConnect documentation for details.

Property Value
TypeDescription
string

UserDefinedQueryParams

[RequestParameter("user_defined_query_params", RequestParameterType.UserDefinedQueries)]
public IEnumerable<KeyValuePair<string, string>> UserDefinedQueryParams { get; set; }

Gets or sets a collection of user defined query parameters to facilitate any not explicitly supported by the library which will be included in the resultant authentication URL.

Property Value
TypeDescription
IEnumerableKeyValuePairstringstring
Remarks

The name of this parameter is used only for the constructor and will not end up in the resultant query string.

Extension Method