public class TokenErrorResponse
OAuth 2.0 model for a unsuccessful access token response as specified in http://tools.ietf.org/html/rfc6749#section-5.2.
Namespace
Google.Apis.Auth.OAuth2.ResponsesAssembly
Google.Apis.Auth.dll
Constructors
TokenErrorResponse()
public TokenErrorResponse()
Constructs a new empty token error response.
TokenErrorResponse(AuthorizationCodeResponseUrl)
public TokenErrorResponse(AuthorizationCodeResponseUrl authorizationCode)
Constructs a new token error response from the given authorization code response.
Parameter | |
---|---|
Name | Description |
authorizationCode |
AuthorizationCodeResponseUrl |
Properties
Error
[JsonProperty("error")]
public string Error { get; set; }
Gets or sets error code (e.g. "invalid_request", "invalid_client", "invalid_grant", "unauthorized_client", "unsupported_grant_type", "invalid_scope") as specified in http://tools.ietf.org/html/rfc6749#section-5.2.
Property Value | |
---|---|
Type | Description |
string |
ErrorDescription
[JsonProperty("error_description")]
public string ErrorDescription { get; set; }
Gets or sets a human-readable text which provides additional information used to assist the client developer in understanding the error occurred.
Property Value | |
---|---|
Type | Description |
string |
ErrorUri
[JsonProperty("error_uri")]
public string ErrorUri { get; set; }
Gets or sets the URI identifying a human-readable web page with provides information about the error.
Property Value | |
---|---|
Type | Description |
string |
Methods
ToString()
public override string ToString()
Returns | |
---|---|
Type | Description |
string |