Google管理员审核API - 如何在C#中获取CustomerID

时间:2012-09-18 13:57:17

标签: c# google-admin-audit-api

我是Google API和基于网络的编程的新手,所以请原谅我一般的无知。我正在尝试使用Google管理员审核API,但未找到如何进行调用以使ClientID能够进行需要客户ID的Google API调用的示例 - 例如管理员审核。我已经运行了其他简单的示例,如检索任务列表等,但问题是这些类型的调用不要求您使用客户ID。

根据其他Google API示例以及审核所需的Google.Apis.Audit.v1,我拥有所有权利。我在管理控制台中启用了配置API,并在API控制台中创建了一个新的基于客户端的项目,并为项目启用了Audit API服务。

以下是我正在做的事情:

 public IAuthenticator GetServiceInterface()
   {
      ClientProvider = new NativeApplicationClient(GoogleAuthenticationServer.Description);
      ClientProvider.ClientIdentifier = "MY_CLIENT_ID";
      ClientProvider.ClientSecret = "MY_CLIENT_SECRET";
      IAuthenticator IAuth = new OAuth2Authenticator<NativeApplicationClient>(ClientProvider, GetAuthorization);
      return IAuth;

   }


   private IAuthorizationState GetAuthorization(NativeApplicationClient client)
   {
      string[] ScopeList = new string[2] { "https://apps-apis.google.com/a/feeds/policies/", "https://www.googleapis.com/auth/apps/reporting/audit.readonly" };
      IAuthorizationState IAuthState = new AuthorizationState(ScopeList);
      IAuthState = AuthorizationMgr.RequestNativeAuthorization(client, ScopeList);
      return IAuthState;

   }


   public void GoogleAuditTest()
   {
      //Get a Audit Service Interface
      AuditService AuService = new AuditService( GetServiceInterface() );

      ????????????????????????????
      ...How do I get the CustomerID required by the audit service calls to list activities, etc

   }

我错过了什么吗?

1 个答案:

答案 0 :(得分:1)

有一种简单的方法可以通过API的资源管理器获取customerId(无需编码)。

  1. 登录域
  2. 转到: https://developers.google.com/apis-explorer/#s/reports/v1/reports.customerUsageReports.get?date=2013-05-18&_h=1&
  3. 授权OAuth
  4. 运行报告时,您会在响应中看到customerId。