通过 gmail 帐户获取 Google 个分析集成应用程序列表
Get List Of Google Analytics integrated Application by gmail Account
我想使用我的 gmail 帐户获取 google 分析集成应用程序的列表。是否 google 提供任何 API 来获取应用程序列表及其视图 ID?有什么办法吗?
您的 Google 帐户(gmail 帐户)可以与许多 Google Analytics Accounts, Properties and Views 相关联。
为了检索这些实体的完整列表,您需要调用 account summaries list 方法。
/**
* Example #1:
* Requests a list of all account summaries for the authorized user.
*/
try {
AccountSummaries accountSummaries = service.management().
accountSummaries().list().execute();
} catch (IOException e) {
System.out.println("An error occurred: " + e);
}
我想使用我的 gmail 帐户获取 google 分析集成应用程序的列表。是否 google 提供任何 API 来获取应用程序列表及其视图 ID?有什么办法吗?
您的 Google 帐户(gmail 帐户)可以与许多 Google Analytics Accounts, Properties and Views 相关联。
为了检索这些实体的完整列表,您需要调用 account summaries list 方法。
/**
* Example #1:
* Requests a list of all account summaries for the authorized user.
*/
try {
AccountSummaries accountSummaries = service.management().
accountSummaries().list().execute();
} catch (IOException e) {
System.out.println("An error occurred: " + e);
}