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-06-05 UTC."],[[["The `AuthorizationCodeRequestUrl` class is used to construct OAuth 2.0 authorization URLs, directing users to a web page where they can authorize an application to access their protected resources, ultimately returning an authorization code as described in RFC6749."],["This class inherits from `AuthorizationRequestUrl` and ultimately the `object` class, inheriting several members such as `ResponseType`, `ClientId`, `RedirectUri`, `Scope`, and `State`, as well as methods like `Equals`, `GetHashCode`, and `ToString`."],["The primary function of the `AuthorizationCodeRequestUrl` is to build a `Uri` for requesting the authorization code, accomplished through the `Build()` method, and can also be set with `authorizationServerUrl`."],["The latest version is 1.69.0, and there are several previous versions listed in the document, ranging back to 1.50.0, providing a historical range of versions for this class."]]],[]]