0
두 달 동안 서로 다른 두 개의 서버에서 서로 다른 두 개의 웹 응용 프로그램에 대한 코드를 사용하여 두 가지 모두 무작위로 400 개의 잘못된 요청으로 작업을 중단했습니다. 'DotNetOpenAuth.Messaging.ProtocolException'이 (가) Google.Apis.dll에서 발생했지만 사용자 코드에서 처리되지 않았습니다.Google 애널리틱스에서 v3 with .NET을 사용하는 보고서 데이터가 무작위로 작동하지 않음
추가 정보 : 직접 메시지를 보내거나 응답을받는 동안 오류가 발생했습니다. "
//Retreive total hits and hits in last 30 days from google analytic
//This is the API url which we're storing to a string
string scope = AnalyticsService.Scopes.AnalyticsReadonly.GetStringValue();
//For whatever reason, this is labelled wrong. It is the email address
//that you have added as a user to your Analytics account
string clientId = "*******@developer.gserviceaccount.com";
//This is the physical path to the file we downloaded earlier
//To demonstrate this, I've kept the full path to my key file.
//Obviously, you will need to change this to match where you've
//stored yours.
string keyFile = @"C:\key\*******.p12";
//The password Google gives you, probably the same as the one below
string keyPassword = "notasecret";
//Store the authentication description
AuthorizationServerDescription desc = GoogleAuthenticationServer.Description;
//Create a certificate object to use when authenticating
X509Certificate2 key = new X509Certificate2(keyFile, keyPassword, X509KeyStorageFlags.Exportable);
//Now, we will log in and authenticate, passing in the description
//and key from above, then setting the accountId and scope
AssertionFlowClient client = new AssertionFlowClient(desc, key)
{
ServiceAccountId = clientId,
Scope = scope
};
//Finally, complete the authentication process
//NOTE: This is the first change from the update above
OAuth2Authenticator<AssertionFlowClient> auth =
new OAuth2Authenticator<AssertionFlowClient>(client, AssertionFlowClient.GetState);
//First, create a new service object
//NOTE: this is the second change from the update
//above. Thanks to James for pointing this out
AnalyticsService gas = new AnalyticsService(new BaseClientService.Initializer() { Authenticator = auth });
//Create our query
//The Data.Ga.Get needs the parameters:
//Analytics account id, starting with ga:
//Start date in format YYYY-MM-DD
//End date in format YYYY-MM-DD
//A string specifying the metrics
DataResource.GaResource.GetRequest r =
gas.Data.Ga.Get(googleID, "2005-01-01", DateTime.Now.ToString("yyyy-MM-dd"), "ga:totalEvents");
//Specify some addition query parameters
r.Filters = "ga:eventCategory==appStart;ga:eventAction==user";
//Execute and fetch the results of our query
GaData d = r.Execute();