public class AuthorizationCodeRequestUrl : AuthorizationRequestUrl
OAuth 2.0 request 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
http://tools.ietf.org/html/rfc6749#section-4.1.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-05 UTC."],[[["The `AuthorizationCodeRequestUrl` class is used to construct OAuth 2.0 request URLs for authorizing an application to access a user's protected resources and obtain an authorization code."],["This class inherits from `AuthorizationRequestUrl` and includes properties like `ResponseType`, `ClientId`, `RedirectUri`, `Scope`, and `State`, among others."],["The latest version of the class is 1.69.0, with other versions like 1.68.0, 1.60.0, 1.59.0, 1.55.0, and 1.50.0 also available for reference."],["The `AuthorizationCodeRequestUrl` constructor takes a `Uri` parameter representing the authorization server URL and automatically sets the response type to 'code'."],["The `Build()` method in the class is used to generate a complete `Uri` that is needed to request the authorization code."]]],[]]