我一直在使用Google API客户端库.NET将Google Analytics数据加载到我的应用程序中:
不过最近我发现它开始完全冻僵了。Execute()
命令连接到Google服务器。
它成功请求:
https://accounts.google.com/o/oauth2/token
它返回类似于:
{
"access_token" : "ya30.HAKlQSGZo2GnK5wxlxx9TLTQUyD9Xkt7AZxuQnDY-KhJuCyrCtN_xHIP",
"token_type" : "Bearer",
"expires_in" : 3600
}
但是之后再也不会从Execute
调用返回。
控制台应用程序中的相同代码会立即返回,但在IIS中,它目前永远不会返回。
在以前的版本中,它运行得很好(我不确定它更改了哪个版本)。
我已将Load User Profile
设置为true。
是什么原因造成的?
var SERVICE_ACCOUNT_PKCS12_FILE_PATH = @"C:TEMPGoogleAnalytics-privatekey.p12";
X509Certificate2 certificate = new X509Certificate2(SERVICE_ACCOUNT_PKCS12_FILE_PATH, "notasecret", X509KeyStorageFlags.MachineKeySet | X509KeyStorageFlags.PersistKeySet | X509KeyStorageFlags.Exportable);
// Create credentials (not my real login here)
ServiceAccountCredential credential = new ServiceAccountCredential(
new ServiceAccountCredential.Initializer("86987278011-ctegcus4og7kn6oigkrv8po5pf67bbgj@developer.gserviceaccount.com")
{
Scopes = new[] { AnalyticsService.Scope.AnalyticsReadonly }
}.FromCertificate(certificate));
// Create the service
var service = new AnalyticsService(new BaseClientService.Initializer()
{
HttpClientInitializer = credential,
ApplicationName = "Google Analytics Application",
});
// get accounts
accounts = service.Management.Accounts.List();
var items = accounts.Execute();
正如Google Calendar API-Not Returning From Execute()C#中所解释的,我们目前在最新版本的Google.Apis.Auth v1.9.3中有一个bug。
我们已经在我们的存储库中对此进行了修复(https://github.com/google/google-api-dotnet-client),因此您可以使用Analytics API自行测试(https://developers.google.com/resources/api-libraries/download/analytics/v3/csharp)。
图书馆的新版本计划在未来几周内发布,请继续关注-http://google-api-dotnet-client.blogspot.com/
更新(12月15日):1.10.0版的新NuGet软件包可用,请访问:http://google-api-dotnet-client.blogspot.com/2015/12/announcing-release-of-1100.html