1

我正在开发一个使用 Google.Apis nugets 的 Windows Phone 8 应用程序。我在模拟器上调试它时遇到问题(并非我的所有团队成员都可以访问设备)。以下代码只是无限期地挂起:

await Task.Factory.StartNew(() =>
{
    try
    {
        var result = GoogleWebAuthorizationBroker.AuthorizeAsync(
            new ClientSecrets
            {
                ClientId = "<my_client_id>",
                ClientSecret = "<my_client_secret>"
            },
            new[] {"https://mail.google.com/email"},
            "<user_id_to_be_authorized>",
            token).Result;
    }
    catch (Exception ex)
    {
        Debug.WriteLine(ex);
    }
});

如果我将 .Result 更改为 .ContinueWith((x) => {...}) 它总是会抛出一个包含在 AggregateException 中的 TaskCanceledException。该代码在我的 Lumia 920 上运行良好。有什么我遗漏的吗?我检查了模拟器中的互联网连接并且浏览器工作正常,我也做了一些谷歌搜索,但没有结果。

4

1 回答 1

0

尝试这个 :

private readonly ILogManager _logManager; 
private readonly IStorageService _storageService; 
private UserCredential _credential; 
private Oauth2Service _authService; 
private Userinfoplus _userinfoplus; 

/// <summary> 
/// Initializes a new instance of the <see cref="GoogleService" /> class. 
/// </summary> 
/// <param name="logManager">The log manager.</param> 
/// <param name="storageService">The storage service.</param> 
public GoogleService(ILogManager logManager, IStorageService storageService) 
{ 
    _logManager = logManager; 
    _storageService = storageService; 
}

 /// <summary> 
/// The login async. 
/// </summary> 
/// <returns> 
/// The <see cref="Task"/> object. 
/// </returns> 
public async Task<Session> LoginAsync() 
{ 
Exception exception = null; 
try 
{ 
    // Oauth2Service.Scope.UserinfoEmail 
    _credential = await GoogleWebAuthorizationBroker.AuthorizeAsync(new ClientSecrets 
    { 
        ClientId = Constants.GoogleClientId, 
        ClientSecret = Constants.GoogleClientSecret 
    }, new[] { Oauth2Service.Scope.UserinfoProfile }, "user", CancellationToken.None); 

    var session = new Session 
    { 
        AccessToken = _credential.Token.AccessToken, 
        Provider = Constants.GoogleProvider, 
        ExpireDate = 
            _credential.Token.ExpiresInSeconds != null 
                ? new DateTime(_credential.Token.ExpiresInSeconds.Value) 
                : DateTime.Now.AddYears(1), 
        Id = string.Empty 
    }; 

    return session; 
} 
catch (TaskCanceledException taskCanceledException) 
{ 
    throw new InvalidOperationException("Login canceled.", taskCanceledException); 
} 
catch (Exception ex) 
{ 
    exception = ex; 
} 
await _logManager.LogAsync(exception); 
return null; 
}
/// <summary> 
/// Gets the user information. 
/// </summary> 
/// <returns> 
/// The user info. 
/// </returns> 
public async Task<Userinfoplus> GetUserInfo() 
{ 
    _authService = new Oauth2Service(new BaseClientService.Initializer() 
    { 
        HttpClientInitializer = _credential, 
        ApplicationName = AppResources.ApplicationTitle, 
    }); 
    _userinfoplus = await _authService.Userinfo.V2.Me.Get().ExecuteAsync(); 

    return _userinfoplus; 
} 
于 2015-08-25T13:51:04.033 回答