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-21 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`, `State`, and `AuthorizationServerUrl`."],["The class provides a constructor `AuthorizationCodeRequestUrl(Uri)` to create a new request, setting the response type to `code`, and takes the authorization server's URI as input."],["The `Build()` method generates the complete URI required to make the authorization code request."],["Version 1.69.0 is the latest version for this class, and there are other versions accessible such as 1.68.0, 1.60.0, 1.59.0, 1.55.0 and 1.50.0."]]],[]]