web-dev-qa-db-ja.com

サービスアカウントを使用して、.NET C#でGoogle Analytics API V3にアクセスするにはどうすればよいですか?

私はこの質問が以前に尋ねられたことに気づきましたが、サンプルコードの方法がほとんどないので、もう一度質問しますが、少なくとも少し方向性があります。

何時間も検索した後、私は次の部分的な実装を思いつきました。

_namespace GoogleAnalyticsAPITest.Console
{
    using System.Security.Cryptography.X509Certificates;
    using DotNetOpenAuth.OAuth2;
    using Google.Apis.Analytics.v3;
    using Google.Apis.Analytics.v3.Data;
    using Google.Apis.Authentication.OAuth2;
    using Google.Apis.Authentication.OAuth2.DotNetOpenAuth;

    class Program
    {
        static void Main(string[] args)
        {
            log4net.Config.XmlConfigurator.Configure();
            string Scope = Google.Apis.Analytics.v3.AnalyticsService.Scopes.Analytics.ToString().ToLower();
            string scopeUrl = "https://www.googleapis.com/auth/" + Scope;
            const string ServiceAccountId = "nnnnnnnnnnn.apps.googleusercontent.com";
            const string ServiceAccountUser = "[email protected]";
            AssertionFlowClient client = new AssertionFlowClient(
                GoogleAuthenticationServer.Description, new X509Certificate2(@"7039572692013fc5deada350904f55bad2588a2a-privatekey.p12", "notasecret", X509KeyStorageFlags.Exportable))
            {
                Scope = scopeUrl,
                ServiceAccountId = ServiceAccountId//,ServiceAccountUser = ServiceAccountUser
            };
            IAuthorizationState state = AssertionFlowClient.GetState(client);
            AnalyticsService service = new AnalyticsService(authenticator);
            string profileId = "ga:xxxxxxxx";
            string startDate = "2010-10-01";
            string endDate = "2010-10-18";
            string metrics = "ga:visits";
            DataResource.GaResource.GetRequest request = service.Data.Ga.Get(profileId, startDate, endDate, metrics);
            request.Dimensions = "ga:date";
            GaData data = request.Fetch();
        }
    }
}
_

いくつか問題があります。 AssertionFlowClient.GetState(client)を呼び出すと、のDotNetOpenAuthログに表示される「invalid_scope」応答が返されます。

2012-10-19 13:27:36,272(GMT-4)[8] INFO DotNetOpenAuth-DotNetOpenAuth、Version = 4.0.0.11165、Culture = neutral、PublicKeyToken = 2780ccd10d57b246(公式)2012-10-19 13:27:36,284( GMT-4)[8] DEBUG DotNetOpenAuth.Messaging.Channel-AssertionFlowMessage(2.0)メッセージを送信する準備をしています。 2012-10-19 13:27:36,294(GMT-4)[8] INFO DotNetOpenAuth.Messaging.Channel - https://accounts.google.com/o/oauth2)の発信AssertionFlowMessage(2.0)メッセージを準備しました/ token :grant_type:アサーションassertion_type: http://oauth.net/grant_type/jwt/1.0/bearer アサーション:(エンコードされた文字の束はここにあります)

2012-10-19 13:27:36,296(GMT-4)[8] DEBUGDotNetOpenAuth.Messaging.Channel-AssertionFlowMessageリクエストを送信しています。 2012-10-19 13:27:36,830(GMT-4)[8] DEBUG DotNetOpenAuth.Http --HTTP POST https://accounts.google.com/o/ oauth2/token 2012-10-19 13:27:36,954(GMT-4)[8]エラーDotNetOpenAuth.Http --WebException from https://accounts.google.com/o/oauth2/token :{"エラー": "invalid_scope"}

ServiceAccountIdとServiceAccountUserの一方または両方を指定しようとしましたが、うまくいきませんでした。

次に、IAuthorizationStateを取得しても、AnalyticsServiceコンストラクターに渡すことができるIAuthenticatorを取得する方法がわかりません。

以下は、DotNetOpenAuthロギングを有効にするために使用するweb.configです。

_<?xml version="1.0"?>
<configuration>
  <configSections>
    <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler,log4net, Version=1.2.10.0, Culture=neutral, publicKeyToken=1b44e1d426115821" />
    <!--<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler" requirePermission="false"/>-->
    <sectionGroup name="dotNetOpenAuth" type="DotNetOpenAuth.Configuration.DotNetOpenAuthSection, DotNetOpenAuth">
      <section name="openid" type="DotNetOpenAuth.Configuration.OpenIdElement, DotNetOpenAuth" requirePermission="false" allowLocation="true"/>
      <section name="oauth" type="DotNetOpenAuth.Configuration.OAuthElement, DotNetOpenAuth" requirePermission="false" allowLocation="true"/>
      <section name="messaging" type="DotNetOpenAuth.Configuration.MessagingElement, DotNetOpenAuth" requirePermission="false" allowLocation="true"/>
      <section name="reporting" type="DotNetOpenAuth.Configuration.ReportingElement, DotNetOpenAuth" requirePermission="false" allowLocation="true"/>
    </sectionGroup>
  </configSections>
  <log4net>
    <appender name="RollingFileAppender" type="log4net.Appender.RollingFileAppender">
      <file value="DotNetOpenAuth.log"/>
      <appendToFile value="true"/>
      <rollingStyle value="Size"/>
      <maxSizeRollBackups value="10"/>
      <maximumFileSize value="100KB"/>
      <staticLogFileName value="true"/>
      <layout type="log4net.Layout.PatternLayout">
        <conversionPattern value="%date (GMT%date{%z}) [%thread] %-5level %logger - %message%newline"/>
      </layout>
    </appender>
    <appender name="TracePageAppender" type="OpenIdProviderWebForms.Code.TracePageAppender, OpenIdProviderWebForms">
      <layout type="log4net.Layout.PatternLayout">
        <conversionPattern value="%date (GMT%date{%z}) [%thread] %-5level %logger - %message%newline"/>
      </layout>
    </appender>
    <!-- Setup the root category, add the appenders and set the default level -->
    <root>
      <level value="ALL"/>
      <appender-ref ref="RollingFileAppender"/>
      <appender-ref ref="TracePageAppender"/>
    </root>
    <!-- Specify the level for some specific categories -->
    <logger name="DotNetOpenAuth">
      <level value="ALL"/>
    </logger>
  </log4net>
  <dotNetOpenAuth>
    <!-- This is an optional configuration section where aspects of dotnetopenauth can be customized. -->
    <!-- For a complete set of configuration options see http://www.dotnetopenauth.net/developers/code-snippets/configuration-options/ -->
    <!--<messaging clockSkew="00:10:00" lifetime="00:03:00" strict="true">-->
    <!--<messaging>
      <untrustedWebRequest timeout="00:00:30" readWriteTimeout="00:00:01.500" maximumBytesToRead="1048576" maximumRedirections="10">
        <whitelistHosts>
          -->
    <!-- Uncomment to enable communication with localhost (should generally not activate in production!) -->
    <!--
          <add name="localhost"/>            
        </whitelistHosts>
      </untrustedWebRequest>
    </messaging>-->
    <!-- Allow DotNetOpenAuth to publish usage statistics to library authors to improve the library. -->
    <reporting enabled="false"/>
  </dotNetOpenAuth>
  <appSettings>
    <!--<add key="log4net.Internal.Debug" value="true" />-->
  </appSettings>
  <runtime>
  </runtime>
  <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
  </startup>
</configuration>
_
16

私の元の質問から修正された次のコードは、IanFraserによって提供された例に基づいています。

https://groups.google.com/forum/#!msg/google-search-api-for-shopping/4uUGirzH4Rw/__c0e4hj0ekJ

彼のコードは3つの問題に対処しました:

  1. AnalyticsService.Scopes.AnalyticsReadonlyが機能していないように見えますが、少なくとも私や私が行っている方法では機能しません。
  2. 何らかの理由で、ServiceAccountUserをAssertionFlowClientインスタンスのServiceAccountIdプロパティに割り当てる必要があります。
  3. OAuth2Authenticatorは、私が探していたIAuthenticatorを提供します。

プロジェクトには、以下への参照を含めます。

  • Lib\DotNetOpenAuth.dll
  • Lib\Google.Apis.dll
  • Lib\Google.Apis.Authentication.OAuth2.dll
  • Services\AnalyticsService\Google.Apis.Analytics.v3.dll

-

namespace GoogleAnalyticsAPITest.Console
{
    using System.Security.Cryptography.X509Certificates;
    using Google.Apis.Analytics.v3;
    using Google.Apis.Analytics.v3.Data;
    using Google.Apis.Authentication.OAuth2;
    using Google.Apis.Authentication.OAuth2.DotNetOpenAuth;
    using Google.Apis.Util;

    class Program
    {
        static void Main(string[] args)
        {
            log4net.Config.XmlConfigurator.Configure();            
            const string ServiceAccountId = "nnnnnnnnnnn.apps.googleusercontent.com";
            const string ServiceAccountUser = "[email protected]";
            AssertionFlowClient client = new AssertionFlowClient(
                GoogleAuthenticationServer.Description, new X509Certificate2(@"value-privatekey.p12", "notasecret", X509KeyStorageFlags.Exportable))
            {
                Scope = AnalyticsService.Scopes.AnalyticsReadonly.GetStringValue(),
                ServiceAccountId = ServiceAccountUser //Bug, why does ServiceAccountUser have to be assigned to ServiceAccountId
                //,ServiceAccountUser = ServiceAccountUser
            };
            OAuth2Authenticator<AssertionFlowClient> authenticator = new OAuth2Authenticator<AssertionFlowClient>(client, AssertionFlowClient.GetState);            
            AnalyticsService service = new AnalyticsService(authenticator);            
            string profileId = "ga:64968920";
            string startDate = "2010-10-01";
            string endDate = "2010-10-31";
            string metrics = "ga:visits";
            DataResource.GaResource.GetRequest request = service.Data.Ga.Get(profileId, startDate, endDate, metrics);
            request.Dimensions = "ga:date";
            GaData data = request.Fetch();            
        }

    }
}
11

昨日分析APIをチェックしていたところ、文書化されておらず、サンプルなどがないことに気づきました。

いずれにせよ、私は数行で分析に簡単にアクセスし、githubのオープンソースで返されるデータのDataTablesに直接データバインディングを作成するために使用できるライブラリを作成しましたので、お気軽に投稿してください:)

https://github.com/rmostafa/DotNetAnalyticsAPI

使用法

Analytics.AnalyticsManager manager = new Analytics.AnalyticsManager(Server.MapPath("~/bin/privatekey.p12"), "YOUR_EMAIL");
            manager.LoadAnalyticsProfiles();


List<Analytics.Data.DataItem> metrics = new List<Analytics.Data.DataItem>();
metrics.Add(Analytics.Data.Visitor.Metrics.visitors);
metrics.Add(Analytics.Data.Session.Metrics.visits);
List<Analytics.Data.DataItem> dimensions = new List<Analytics.Data.DataItem>();
dimensions.Add(Analytics.Data.GeoNetwork.Dimensions.country);
dimensions.Add(Analytics.Data.GeoNetwork.Dimensions.city);


System.Data.DataTable table = manager.GetGaDataTable(DateTime.Today.AddDays(-3), DateTime.Today, metrics, dimensions, null, metrics);

APIと同じように分類されたすべてのGoogleAPIレポートコマンドの直接コードマッピングがあるため、APIドキュメントをまったく読まなくても、属性にすべての機能が文書化されているため、完全なAPIドキュメントを解析するコードを記述しました。上記の例のように直接使用できる物理クラスから生成したXMLのメトリック、ディメンション、計算された機能をリソースとして提供しました:)お楽しみください

https://github.com/rmostafa/DotNetAnalyticsAPI

5
Ramy Mostafa
string scope = Google.Apis.Util.Utilities.GetStringValue(AnalyticsService.Scopes.AnalyticsReadonly);
3
nemaroller

ここに投稿された私の実際の例は次のとおりです[1]: Google-api-dotnet-clientの自動使用OAuth 2. 私は検索と継ぎ合わせに多くの研究をしましたコードを一緒に使用すると、時間を節約できます。

2
ChiefSoaringSQL

リチャードコレットの回答に関して、Analytics APIを読み取り専用モードで使用する場合は、彼のメソッドを使用することに注意してください。正しい使用方法は次のとおりです。

_string Scope = "analytics.readonly"
_

ではなく

_string Scope = AnalyticsService.Scopes.AnalyticsReadOnly.ToString().ToLower()
_

彼はバグがあると言っているようです。実際、バグは.toString()メソッドがanalyticsreadonlyを返し、Googleが好む方法である_analytics.readonly_を返さないことです。それでおしまい。

1