 | GmailOAuthGetAuthorizationUrl(ListGoogleScope) Method |
Gets url you should redirect your user to, in order for him to authorize IMAP access.
This method uses oob instead of callback this means that your user will need to copy verification code to your application.
Namespace: Limilabs.Client.Authentication.GoogleAssembly: Mail (in Mail.dll) Version: 3.0.26106.1555
Syntaxpublic string GetAuthorizationUrl(
List<GoogleScope> scopes
)
Public Function GetAuthorizationUrl (
scopes As List(Of GoogleScope)
) As String
public:
String^ GetAuthorizationUrl(
List<GoogleScope^>^ scopes
)
member GetAuthorizationUrl :
scopes : List<GoogleScope> -> string Parameters
- scopes ListGoogleScope
- Scopes you request access to.
Return Value
StringUrl you should redirect the user to.
See Also