| OAuthAuthLink Method |
Authentications the link.
Namespace: InstaSharpAssembly: InstaSharp (in InstaSharp.dll) Version: 2.0.0.0 (2.0.0.0)
Syntax public static string AuthLink(
string instagramOAuthUri,
string clientId,
string callbackUri,
List<OAuthScope> scopes,
OAuthResponseType responseType = OAuthResponseType.Token
)
Public Shared Function AuthLink (
instagramOAuthUri As String,
clientId As String,
callbackUri As String,
scopes As List(Of OAuthScope),
Optional responseType As OAuthResponseType = OAuthResponseType.Token
) As String
public:
static String^ AuthLink(
String^ instagramOAuthUri,
String^ clientId,
String^ callbackUri,
List<OAuthScope>^ scopes,
OAuthResponseType responseType = OAuthResponseType::Token
)
static member AuthLink :
instagramOAuthUri : string *
clientId : string *
callbackUri : string *
scopes : List<OAuthScope> *
?responseType : OAuthResponseType
(* Defaults:
let _responseType = defaultArg responseType OAuthResponseType.Token
*)
-> string
Parameters
- instagramOAuthUri
- Type: SystemString
The instagram o authentication URI. - clientId
- Type: SystemString
The client identifier. - callbackUri
- Type: SystemString
The callback URI. - scopes
- Type: System.Collections.GenericListOAuthScope
The scopes. - responseType (Optional)
- Type: InstaSharpOAuthResponseType
Type of the response.
Return Value
Type:
StringThe authentication url
See Also