15 public string Code {
get; }
39 : base(oAuthConfiguration)
41 Code = code ??
throw new ArgumentNullException(nameof(code));
42 Scope = scope ??
throw new ArgumentNullException(nameof(scope));
OAuth configuration options.
Uri RedirectUrl
The authentication server URL. Not used by all providers.
Generic OAuth token request.
OAuthTokenRequest(OAuthConfiguration oAuthConfiguration, string code, string scope)
Initializes a new instance of the OAuthTokenRequest class.
string Code
The OAuth code received from the browser.
string GrantType
The OAuth grant type.
string Scope
The scopes being requested.
Uri RedirectUri
The OAuth redirect URI.