bill
This commit is contained in:
@ -0,0 +1,23 @@
|
||||
|
||||
namespace OAuth.AspNet.AuthServer
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// Data object used by TokenEndpointRequest when the "grant_type" is "authorization_code".
|
||||
/// </summary>
|
||||
public class TokenEndpointRequestAuthorizationCode
|
||||
{
|
||||
/// <summary>
|
||||
/// The value passed to the Token endpoint in the "code" parameter
|
||||
/// </summary>
|
||||
public string Code { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The value passed to the Token endpoint in the "redirect_uri" parameter. This MUST be provided by the caller
|
||||
/// if the original visit to the Authorize endpoint contained a "redirect_uri" parameter.
|
||||
/// </summary>
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1056:UriPropertiesShouldNotBeStrings", Justification = "By design")]
|
||||
public string RedirectUri { get; set; }
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user