我按照本指南使用 Google OAuth 2.0 授权,但我不明白如何在我的应用程序中实现检索访问和刷新令牌的请求。正如该指南所说,该代码是当前的:
// Request an access token
OAuthAuthorization authorization = new OAuthAuthorization(
"https://accounts.google.com/o/oauth2/auth",
"https://accounts.google.com/o/oauth2/token");
TokenPair tokenPair = await authorization.Authorize(
ClientId,
ClientSecret,
new string[] {GoogleScopes.CloudPrint, GoogleScopes.Gmail});
// Request a new access token using the refresh token (when the access token was expired)
TokenPair refreshTokenPair = await authorization.RefreshAccessToken(
ClientId,
ClientSecret,
tokenPair.RefreshToken);
在通用 Windows Phone 应用程序中,我可以在何处以及如何调用此函数?
(对不起,如果这个问题是重复的,但我尝试搜索,我只找到通用 Google API 指南的答案链接)