16

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

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

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 = "nnnnnnnnnnn@developer.gserviceaccount.com";
            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();
        }
    }
}

いくつか問題があります。の DotNetOpenAuth ログに見られるように、呼び出しによりAssertionFlowClient.GetState(client)「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/tokenの発信 AssertionFlowMessage (2.0) メッセージを準備しました: grant_type : assertion assertion_type: http://oauth.net/grant_type/jwt/1.0/bearer assertion: (エンコードされた文字の束がここに入ります)

2012-10-19 13:27:36,296 (GMT-4) [8] DEBUG DotNetOpenAuth.Messaging.Channel - AssertionFlowMessage リクエストの送信。2012-10-19 13:27:36,830 (GMT-4) [8] デバッグ DotNetOpenAuth.Http - HTTP POST https://accounts.google.com/o/oauth2/token 2012-10-19 13:27:36,954 (GMT-4) [8] エラー DotNetOpenAuth.Http - https://accounts.google.com/o/oauth2/tokenからの WebException : { "error" : "invalid_scope" }

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

第 2 に、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>
4

5 に答える 5

11

私の元の質問から修正された次のコードは、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 = "nnnnnnnnnnn@developer.gserviceaccount.com";
            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();            
        }

    }
}
于 2012-10-22T14:11:44.093 に答える
5

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

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

https://github.com/rmstafa/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 と同じように分類されたすべての Google API レポート コマンドの直接コード マッピングがあるため、API ドキュメントをまったく読まなくてもマッピングできます。そこにあるすべての機能は属性で文書化されているためです。完全な API ドキュメントを解析するコードを書き、上記の例のように直接使用できる物理クラスから生成した XML でメトリクス、ディメンション、計算機能をリソース化しました。

https://github.com/rmstafa/DotNetAnalyticsAPI

于 2014-01-30T00:15:35.817 に答える
2

ここに投稿された実際の例を次に示します [1]: OAuth 2.0 を使用した google-api-dotnet-client の自動使用コードを見つけてつなぎ合わせるために多くの調査を行いました。

于 2012-10-20T02:55:40.287 に答える
1

Richard Collette の回答については、Analytics API を READONLY モードで使用する場合は、彼の方法を使用することに注意してください。正しい使用方法は次のとおりです。

string Scope = "analytics.readonly"

そしてそうではない

string Scope = AnalyticsService.Scopes.AnalyticsReadOnly.ToString().ToLower()

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

于 2012-12-18T12:31:45.077 に答える