Manages Google Analytics account and property settings, enables the Analytics Admin API via the Cloud CLI, lists accounts and properties, and manages data strea
复制下面这句话,粘贴给 Claude Code、Codex、Cursor 等 AI 编程工具,它会读取安装说明并在你确认后完成安装。
请阅读 https://ai.atlankj.com/install/asset/gh-google-analytics-admin-api-basics-2a2d9ccf318a ,按照其中的说明把「google-analytics-admin-api-basics」安装到你(当前 AI 工具)中。执行前先告诉我将运行的命令和写入的位置,等我确认。
查看 AI 将读取的安装说明正在读取 GitHub 原文…
内容来自 GitHub 原始文件,由原作者维护。在 GitHub 查看
The Google Analytics Admin API provides programmatic access to Google Analytics account and property configuration. It lets you automate account management, manage data streams, configure custom dimensions, and handle product integrations.
Before making API calls, ensure the Google Analytics Admin API is enabled in your Google Cloud project.
If gcloud is not found, prompt the user to install the Google Cloud CLI before
running these commands.
Enable the API: Use the Cloud CLI (gcloud) to enable
analyticsadmin.googleapis.com.
gcloud services enable analyticsadmin.googleapis.com --quiet
Why: Enabling the API ensures your Cloud project has the necessary quota and permissions allocated for managing Google Analytics configurations.
Verify API Enablement:
gcloud services list --enabled --filter="analyticsadmin.googleapis.com"
To authenticate your API requests, you must generate Application Default Credentials (ADC) and give your account the necessary scopes. Run the following command in your terminal:
gcloud auth application-default login --scopes="https://www.googleapis.com/auth/cloud-platform,https://www.googleapis.com/auth/analytics.readonly"
Why: This configures ADC in your local environment with the required Cloud Platform and Google Analytics read-only scopes, allowing the client library to automatically authenticate your requests.
[!NOTE] Configuration Changes: Methods changing the Google Analytics account/property configuration will need the
https://www.googleapis.com/auth/analytics.editscope.
You can use the Google Analytics Admin API to:
The following capabilities are currently available only in the v1alpha version
of the Admin API:
To interact with the Admin API, use the official Google Analytics Admin client
library. Note that v1beta is the most stable version of the Admin API. For the
latest features, consider using v1alpha.
[!IMPORTANT] Mandatory Agent Directive: When the user selects or requires a specific programming language, read the corresponding client library setup reference guide in
references/listed below.
If you need to install or set up the Google Analytics Admin API client library for Python, read the setup guide:
google-analytics-admin)If you need to install or set up the Google Analytics Admin API client library for Java, read the setup guide:
com.google.cloud:google-cloud-analytics-admin)If you need to install or set up the Google Analytics Admin API client library for PHP, read the setup guide:
google/analytics-admin)If you need to install or set up the Google Analytics Admin API client library for Node.js, read the setup guide:
@google-analytics/admin)If you need to install or set up the Google Analytics Admin API client library for Go, read the setup guide:
cloud.google.com/go/analytics/admin/apiv1beta)If you need to install or set up the Google Analytics Admin API client library for .NET / C#, read the setup guide:
Google.Analytics.Admin.V1Beta)If you need to install or set up the Google Analytics Admin API client library for Ruby, read the setup guide:
google-analytics-admin-v1alpha)[!NOTE] Additional Resources: For further examples of calling the Admin API with Java, PHP, Node.js, .NET, Python, and REST, as well as hints on authentication with a service account, refer to the official Admin API Quickstart. For complete API reference documentation for both
v1alphaandv1beta, see the Admin API Reference.
Install the Client Library:
pip install google-analytics-admin
If pip is not available, prompt the user to install pip before
installing the client library.
List Accounts and Properties: Below is a complete example demonstrating
how to call the Admin API to list all available accounts and their child
properties for the current user using list_account_summaries().
from google.analytics.admin import AnalyticsAdminServiceClient
def sample_list_account_summaries():
# Initialize the client.
# Assumes Application Default Credentials (ADC) are configured in your environment.
client = AnalyticsAdminServiceClient()
# list_account_summaries returns a summary of all accounts accessible to the
# user and their child properties.
account_summaries = client.list_account_summaries()
print("Available Google Analytics Accounts and Properties:")
for summary in account_summaries:
print(f"Account: {summary.display_name} ({summary.account})")
for property_summary in summary.property_summaries:
print(f" Property: {property_summary.display_name} ({property_summary.property})")
if __name__ == "__main__":
sample_list_account_summaries()