Click or drag to resize
AuthorizeRequestExtensionsCreateAuthorizeUrl Method
Create Authorize Url

Namespace:  Intuit.Ipp.OAuth2PlatformClient
Assembly:  Intuit.Ipp.OAuth2PlatformClient (in Intuit.Ipp.OAuth2PlatformClient.dll) Version: 4.0.0.0 (4.0.0.0)
Syntax
C#
public static string CreateAuthorizeUrl(
	this AuthorizeRequest request,
	string clientId,
	string responseType,
	string scope = null,
	string redirectUri = null,
	string state = null,
	Object extra = null
)

Parameters

request
Type: Intuit.Ipp.OAuth2PlatformClientAuthorizeRequest
request
clientId
Type: SystemString
clientId
responseType
Type: SystemString
responseType
scope (Optional)
Type: SystemString
scope
redirectUri (Optional)
Type: SystemString
redirectUri
state (Optional)
Type: SystemString
state
extra (Optional)
Type: SystemObject
extra

Return Value

Type: String
string

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type AuthorizeRequest. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also