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 ultimately from `object`, gaining access to their inherited members like `ResponseType`, `ClientId`, `RedirectUri`, `Scope`, `State`, and `AuthorizationServerUrl`."],["The `AuthorizationCodeRequestUrl` constructor requires an `authorizationServerUrl` URI to create a new authorization code request and sets the `response_type` to `code`."],["The `Build()` method is used to generate the final `Uri` required to request the authorization code from the server."],["This class is part of the `Google.Apis.Auth.OAuth2.Requests` namespace within the `Google.Apis.Auth.dll` assembly."]]],[]]