为什么account可以变ad?

你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
项目
05/05/2023
内部版本 1.1.880.0(发布于 2018 年 8 月)中引入了名为 ADSyncConfig.psm1 的 PowerShell 模块,其中包括有助于为 Azure AD Connect 部署配置正确 Active Directory 权限的 cmdlet 集合。概述对于选择要在 Azure AD Connect 中启用的每个功能,可以使用以下 PowerShell cmdlet 设置 AD DS Connector 帐户的 Active Directory 权限。 为了防止出现任何问题,每当要使用自定义域帐户安装 Azure AD Connect 以连接林时,都应提前准备 Active Directory 权限。 部署 Azure AD Connect 后,此 ADSyncConfig 模块还可用于配置权限。对于 Azure AD Connect 快速安装,将在 Active Directory 中创建一个具有所有必需权限的自动生成的帐户 (MSOL_nnnnnnnnnn),因此除非你已阻止对组织单位或要同步到 Azure AD 的特定 Active Directory 对象的权限继承,否则无需使用此 ADSyncConfig 模块。权限摘要下表提供了 AD 对象所需权限的摘要:使用 ADSyncConfig PowerShell 模块ADSyncConfig 模块需要适用于 AD DS 的远程服务器管理工具 (RSAT),因为它依赖于 AD DS PowerShell 模块和工具。 若要安装适用于 AD DS 的 RSAT,请使用“以管理员身份运行”打开 Windows PowerShell 窗口并执行:Install-WindowsFeature RSAT-AD-Tools
注意也可以将文件 C:\Program Files\Microsoft Azure Active Directory Connect\AdSyncConfig\ADSyncConfig.psm1 复制到已安装了“适用于 AD DS 的 RSAT”的域控制器,并从该控制器使用此 PowerShell 模块。
注意,某些 cmdlet 只能在托管 Azure AD Connect 的计算机上运行。若要开始使用 ADSyncConfig,则需要在 Windows PowerShell 窗口中加载该模块:Import-Module "C:\Program Files\Microsoft Azure Active Directory Connect\AdSyncConfig\AdSyncConfig.psm1"
若要检查此模块中包含的所有 cmdlet,可以键入:Get-Command -Module AdSyncConfig
每个 cmdlet 都具有相同的参数来输入 AD DS 连接器帐户和 AdminSDHolder 开关。 若要指定 AD DS 连接器帐户,可以提供帐户名称和域,或仅提供帐户可分辨名称 (DN),例如:Set-ADSyncPasswordHashSyncPermissions -ADConnectorAccountName <ADAccountName> -ADConnectorAccountDomain <ADDomainName>
或;Set-ADSyncPasswordHashSyncPermissions -ADConnectorAccountDN <ADAccountDN>
务必将 <ADAccountName>、<ADDomainName> 和 <ADAccountDN> 替换为适合你的环境的值。如果想修改 AdminSDHolder 容器的权限,请使用开关 -IncludeAdminSdHolders。 请注意,不推荐这样做。默认情况下,所有设定的权限 cmdlet 都将尝试在林中每个域的根上设置 AD DS 权限,这意味着运行 PowerShell 会话的用户需要林中每个域的域管理员权限。
由于此要求,建议从林根中使用企业管理员。 如果 Azure AD Connect 部署具有多个 AD DS 连接器,则需要在具有 AD DS 连接器的每个林上运行相同的 cmdlet。还可以使用参数 -ADobjectDN(后跟要设置权限的目标对象的 DN)来设置特定 OU 或 AD DS 对象的权限。 使用目标 ADobjectDN 时,cmdlet 将仅对此对象设置权限,而不对域根或 AdminSDHolder 容器设置权限。 若所拥有的特定 OU 或 AD DS 对象已禁用权限继承,此参数非常有用(请参阅“查找已禁用权限继承的 AD DS 对象”)这些常用参数的例外情况是用于对 AD DS 连接器帐户本身设置权限的 Set-ADSyncRestrictedPermissions cmdlet 以及 Set-ADSyncPasswordHashSyncPermissions cmdlet,因为密码哈希同步所需的权限仅在域根中进行了设置,所以此 cmdlet 不包含 -ObjectDN 或 -IncludeAdminSdHolders 参数。如果已安装 Azure AD Connect 并且想要检查 Azure AD Connect 当前正在使用的 AD DS 连接器帐户,则可以执行 cmdlet:Get-ADSyncADConnectorAccount
如果想要检查是否存在任何已禁用权限继承的 AD DS 对象,可以运行:Get-ADSyncObjectsWithInheritanceDisabled -SearchBase '<DistinguishedName>'
默认情况下,此 cmdlet 将仅查找已禁用继承的 OU,但你可以在 -ObjectClass 参数中指定其他 AD DS 对象类或使用“*”查找所有对象类,如下所示:Get-ADSyncObjectsWithInheritanceDisabled -SearchBase '<DistinguishedName>' -ObjectClass *
可以使用以下 cmdlet 来查看当前对 Active Directory 对象设置的权限列表,只需提供其 DistinguishedName 即可:Show-ADSyncADObjectPermissions -ADobjectDN '<DistinguishedName>'
配置基础只读权限若要在不使用任何 Azure AD Connect 功能时为 AD DS 连接器帐户设置基础只读权限,请运行:Set-ADSyncBasicReadPermissions -ADConnectorAccountName <String> -ADConnectorAccountDomain <String> [-IncludeAdminSdHolders] [<CommonParameters>]
或;Set-ADSyncBasicReadPermissions -ADConnectorAccountDN <String> [-ADobjectDN <String>] [<CommonParameters>]
此 cmdlet 将设置以下权限:类型
名称
访问
应用于
Allow
AD DS 连接器帐户
读取所有属性
后代设备对象
Allow
AD DS 连接器帐户
读取所有属性
后代 InetOrgPerson 对象
Allow
AD DS 连接器帐户
读取所有属性
后代计算机对象
Allow
AD DS 连接器帐户
读取所有属性
后代 foreignSecurityPrincipal 对象
Allow
AD DS 连接器帐户
读取所有属性
后代组对象
Allow
AD DS 连接器帐户
读取所有属性
后代用户对象
Allow
AD DS 连接器帐户
读取所有属性
后代联系人对象
Allow
AD DS 连接器帐户
复制目录更改
仅限此对象(域根)
配置 MS-DS-Consistency-Guid 权限若要在使用 ms-Ds-Consistency-Guid 属性作为源定位点(也就是“让 Azure 为我管理源定位点”选项)时为 AD DS 连接器帐户设置权限,请运行:Set-ADSyncMsDsConsistencyGuidPermissions -ADConnectorAccountName <String> -ADConnectorAccountDomain <String> [-IncludeAdminSdHolders] [<CommonParameters>]
或;Set-ADSyncMsDsConsistencyGuidPermissions -ADConnectorAccountDN <String> [-ADobjectDN <String>] [<CommonParameters>]
此 cmdlet 将设置以下权限:类型
名称
访问
应用于
Allow
AD DS 连接器帐户
读取/写入属性
后代用户对象
密码哈希同步的权限若要在使用密码哈希同步时为 AD DS 连接器帐户设置权限,请运行:Set-ADSyncPasswordHashSyncPermissions -ADConnectorAccountName <String> -ADConnectorAccountDomain <String> [<CommonParameters>]
或;Set-ADSyncPasswordHashSyncPermissions -ADConnectorAccountDN <String> [<CommonParameters>]
此 cmdlet 将设置以下权限:类型
名称
访问
应用于
Allow
AD DS 连接器帐户
复制目录更改
仅限此对象(域根)
Allow
AD DS 连接器帐户
复制所有目录更改
仅限此对象(域根)
密码写回的权限若要在使用密码写回时为 AD DS 连接器帐户设置权限,请运行:Set-ADSyncPasswordWritebackPermissions -ADConnectorAccountName <String> -ADConnectorAccountDomain <String> [-IncludeAdminSdHolders] [<CommonParameters>]
或;Set-ADSyncPasswordWritebackPermissions -ADConnectorAccountDN <String> [-ADobjectDN <String>] [<CommonParameters>]
此 cmdlet 将设置以下权限:类型
名称
访问
应用于
Allow
AD DS 连接器帐户
重置密码
后代用户对象
Allow
AD DS 连接器帐户
写入 lockoutTime 属性
后代用户对象
Allow
AD DS 连接器帐户
写入 pwdLastSet 属性
后代用户对象
组写回的权限若要在使用组写回时为 AD DS 连接器帐户设置权限,请运行:Set-ADSyncUnifiedGroupWritebackPermissions -ADConnectorAccountName <String> -ADConnectorAccountDomain <String> [-IncludeAdminSdHolders] [<CommonParameters>]
或;Set-ADSyncUnifiedGroupWritebackPermissions -ADConnectorAccountDN <String> [-ADobjectDN <String>] [<CommonParameters>]
此 cmdlet 将设置以下权限:类型
名称
访问
应用于
Allow
AD DS 连接器帐户
一般读取/写入
对象类型组和子对象的所有属性
Allow
AD DS 连接器帐户
创建/删除子对象
对象类型组和子对象的所有属性
Allow
AD DS 连接器帐户
删除/删除树对象
对象类型组和子对象的所有属性
Exchange 混合部署的权限若要在使用 Exchange 混合部署时为 AD DS 连接器帐户设置权限,请运行:Set-ADSyncExchangeHybridPermissions -ADConnectorAccountName <String> -ADConnectorAccountDomain <String> [-IncludeAdminSdHolders] [<CommonParameters>]
或;Set-ADSyncExchangeHybridPermissions -ADConnectorAccountDN <String> [-ADobjectDN <String>] [<CommonParameters>]
此 cmdlet 将设置以下权限:类型
名称
访问
应用于
Allow
AD DS 连接器帐户
读取/写入所有用户属性
后代用户对象
Allow
AD DS 连接器帐户
读取/写入所有用户属性
后代 InetOrgPerson 对象
Allow
AD DS 连接器帐户
读取/写入所有用户属性
后代组对象
Allow
AD DS 连接器帐户
读取/写入所有用户属性
后代联系人对象
Exchange 邮件公用文件夹的权限若要在使用 Exchange 邮件公用文件夹功能时为 AD DS 连接器帐户设置权限,请运行:Set-ADSyncExchangeMailPublicFolderPermissions -ADConnectorAccountName <String> -ADConnectorAccountDomain <String> [-IncludeAdminSdHolders] [<CommonParameters>]
或;Set-ADSyncExchangeMailPublicFolderPermissions -ADConnectorAccountDN <String> [-ADobjectDN <String>] [<CommonParameters>]
此 cmdlet 将设置以下权限:类型
名称
访问
应用于
Allow
AD DS 连接器帐户
读取所有属性
后代 PublicFolder 对象
此 PowerShell 脚本将限制以参数提供的 AD 连接器帐户的权限。 限制权限操作包括以下步骤:在指定对象上禁用继承
删除特定对象上的所有 ACE(特定于 SELF 的 ACE 除外),因为对于 SELF,我们希望默认权限保持不变。
-ADConnectorAccountDN 参数是需要限制权限的 AD 帐户。 这通常是在 AD DS 连接器中配置的 MSOL_nnnnnnnnnnnn 域帐户(请参阅“确定 AD DS 连接器帐户”)。 若要指定具有必要权限以限制目标 AD 对象的 Active Directory 权限的管理员帐户,必须使用 -Credential 参数(此帐户必须不同于 ADConnectorAccountDN 帐户)。 这通常为企业或域管理员。
Set-ADSyncRestrictedPermissions [-ADConnectorAccountDN] <String> [-Credential] <PSCredential> [-DisableCredentialValidation] [-WhatIf] [-Confirm] [<CommonParameters>]
例如:$credential = Get-Credential
Set-ADSyncRestrictedPermissions -ADConnectorAccountDN 'CN=ADConnectorAccount,OU=Users,DC=Contoso,DC=com' -Credential $credential
此 cmdlet 将设置以下权限:类型
名称
访问
应用于
Allow
SYSTEM
完全控制
此对象
Allow
企业管理员
完全控制
此对象
Allow
域管理员
完全控制
此对象
Allow
管理员
完全控制
此对象
Allow
企业域控制器
列出内容
此对象
Allow
企业域控制器
读取所有属性
此对象
Allow
企业域控制器
读取权限
此对象
Allow
经过身份验证的用户
列出内容
此对象
Allow
经过身份验证的用户
读取所有属性
此对象
Allow
经过身份验证的用户
读取权限
此对象
后续步骤Azure AD Connect:帐户和权限
快速安装
自定义安装
ADSyncConfig 参考
Generated Dart libraries for accessing
Google APIs.
To use these APIs from Flutter, see the
Flutter Google APIs documentation.
For example of using these APIs from a Dart console example see the example in
this package. For an example of usage in a server application,
see this example.
The following is a list of APIs that are currently available inside this
package.
Abusive Experience Report API - abusiveexperiencereport_v1
Views Abusive Experience Report data, and gets a list of sites that have a significant number of abusive experiences.
Documentation
API details
Accelerated Mobile Pages (AMP) URL API - acceleratedmobilepageurl_v1
Retrieves the list of AMP URLs (and equivalent AMP Cache URLs) for a given list of public URL(s).
Documentation
API details
Access Approval API - accessapproval_v1
An API for controlling access to data by Google personnel.
Documentation
API details
Access Context Manager API - accesscontextmanager_v1
An API for setting attribute based access control to requests to Google Cloud services.
Documentation
API details
ACME DNS API - acmedns_v1
Google Domains ACME DNS API that allows users to complete ACME DNS-01 challenges for a domain.
Documentation
API details
Ad Experience Report API - adexperiencereport_v1
Views Ad Experience Report data, and gets a list of sites that have a significant number of annoying ads.
Documentation
API details
Admin SDK API - admin_datatransfer_v1
Admin SDK lets administrators of enterprise domains to view and manage resources like user, groups etc. It also provides audit and usage reports of domain.
Documentation
API details
Admin SDK API - admin_directory_v1
Admin SDK lets administrators of enterprise domains to view and manage resources like user, groups etc. It also provides audit and usage reports of domain.
Documentation
API details
Admin SDK API - admin_reports_v1
Admin SDK lets administrators of enterprise domains to view and manage resources like user, groups etc. It also provides audit and usage reports of domain.
Documentation
API details
AdMob API - admob_v1
The AdMob API allows publishers to programmatically get information about their AdMob account.
Documentation
API details
AdSense Management API - adsense_v2
The AdSense Management API allows publishers to access their inventory and run earnings and performance reports.
Documentation
API details
AdSense Host API - adsensehost_v4_1
Generates performance reports, generates ad codes, and provides publisher management capabilities for AdSense Hosts.
Documentation
API details
Advisory Notifications API - advisorynotifications_v1
An API for accessing Advisory Notifications in Google Cloud
Documentation
API details
Google Analytics API - analytics_v3
Views and manages your Google Analytics data.
Documentation
API details
Analytics Hub API - analyticshub_v1
Exchange data and analytics assets securely and efficiently.
Documentation
API details
Analytics Reporting API - analyticsreporting_v4
Accesses Analytics report data.
Documentation
API details
Android Device Provisioning Partner API - androiddeviceprovisioning_v1
Automates Android zero-touch enrollment for device resellers, customers, and EMMs.
Documentation
API details
Google Play EMM API - androidenterprise_v1
Manages the deployment of apps to Android Enterprise devices.
Documentation
API details
Android Management API - androidmanagement_v1
The Android Management API provides remote enterprise management of Android devices and apps.
Documentation
API details
Google Play Android Developer API - androidpublisher_v3
Lets Android application developers access their Google Play accounts. At a high level, the expected workflow is to "insert" an Edit, make changes as necessary, and then "commit" it.
Documentation
API details
API Gateway API - apigateway_v1
Documentation
API details
Apigee API - apigee_v1
Use the Apigee API to programmatically develop and manage APIs with a set of RESTful operations. Develop and secure API proxies, deploy and undeploy API proxy revisions, monitor APIs, configure environments, manage users, and more. Note: This product is available as a free trial for a time period of 60 days.
Documentation
API details
Apigee Registry API - apigeeregistry_v1
Documentation
API details
API Keys API - apikeys_v2
Manages the API keys associated with developer projects.
Documentation
API details
App Engine Admin API - appengine_v1
Provisions and manages developers' App Engine applications.
Documentation
API details
Artifact Registry API - artifactregistry_v1
Store and manage build artifacts in a scalable and integrated service built on Google infrastructure.
Documentation
API details
Assured Workloads API - assuredworkloads_v1
Documentation
API details
Authorized Buyers Marketplace API - authorizedbuyersmarketplace_v1
The Authorized Buyers Marketplace API lets buyers programmatically discover inventory; propose, retrieve and negotiate deals with publishers.
Documentation
API details
Bare Metal Solution API - baremetalsolution_v2
Provides ways to manage Bare Metal Solution hardware installed in a regional extension located near a Google Cloud data center.
Documentation
API details
Batch API - batch_v1
An API to manage the running of batch jobs on Google Cloud Platform.
Documentation
API details
BeyondCorp API - beyondcorp_v1
Beyondcorp Enterprise provides identity and context aware access controls for enterprise resources and enables zero-trust access. Using the Beyondcorp Enterprise APIs, enterprises can set up multi-cloud and on-prem connectivity solutions.
Documentation
API details
BigQuery API - bigquery_v2
A data platform for customers to create, manage, share and query data.
Documentation
API details
BigQuery Data Transfer API - bigquerydatatransfer_v1
Schedule queries or transfer external data from SaaS applications to Google BigQuery on a regular basis.
Documentation
API details
BigQuery Reservation API - bigqueryreservation_v1
A service to modify your BigQuery flat-rate reservations.
Documentation
API details
Cloud Bigtable Admin API - bigtableadmin_v2
Administer your Cloud Bigtable tables and instances.
Documentation
API details
Cloud Billing Budget API - billingbudgets_v1
The Cloud Billing Budget API stores Cloud Billing budgets, which define a budget plan and the rules to execute as spend is tracked against that plan.
Documentation
API details
Binary Authorization API - binaryauthorization_v1
The management interface for Binary Authorization, a service that provides policy-based deployment validation and control for images deployed to Google Kubernetes Engine (GKE), Anthos Service Mesh, Anthos Clusters, and Cloud Run.
Documentation
API details
Blogger API - blogger_v3
The Blogger API provides access to posts, comments and pages of a Blogger blog.
Documentation
API details
Books API - books_v1
The Google Books API allows clients to access the Google Books repository.
Documentation
API details
Business Profile Performance API - businessprofileperformance_v1
The Business Profile Performance API allows merchants to fetch performance reports about their business profile on Google. Note - If you have a quota of 0 after enabling the API, please request for GBP API access.
Documentation
API details
Calendar API - calendar_v3
Manipulates events and other calendar data.
Documentation
API details
Certificate Manager API - certificatemanager_v1
Documentation
API details
Google Chat API - chat_v1
Enables apps to fetch information and perform actions in Google Chat. Authentication is a prerequisite for using the Google Chat REST API.
Documentation
API details
Chrome Management API - chromemanagement_v1
The Chrome Management API is a suite of services that allows Chrome administrators to view, manage and gain insights on their Chrome OS and Chrome Browser devices.
Documentation
API details
Chrome Policy API - chromepolicy_v1
The Chrome Policy API is a suite of services that allows Chrome administrators to control the policies applied to their managed Chrome OS devices and Chrome browsers.
Documentation
API details
Chrome UX Report API - chromeuxreport_v1
The Chrome UX Report API lets you view real user experience data for millions of websites.
Documentation
API details
Google Civic Information API - civicinfo_v2
Provides polling places, early vote locations, contest data, election officials, and government representatives for U.S. residential addresses.
Documentation
API details
Google Classroom API - classroom_v1
Manages classes, rosters, and invitations in Google Classroom.
Documentation
API details
Cloud Asset API - cloudasset_v1
The Cloud Asset API manages the history and inventory of Google Cloud resources.
Documentation
API details
Cloud Billing API - cloudbilling_v1
Allows developers to manage billing for their Google Cloud Platform projects programmatically.
Documentation
API details
Cloud Build API - cloudbuild_v1
Creates and manages builds on Google Cloud Platform.
Documentation
API details
Cloud Channel API - cloudchannel_v1
The Cloud Channel API enables Google Cloud partners to have a single unified resale platform and APIs across all of Google Cloud including GCP, Workspace, Maps and Chrome.
Documentation
API details
Cloud Debugger API - clouddebugger_v2
Examines the call stack and variables of a running application without stopping or slowing it down.
Documentation
API details
Google Cloud Deploy API - clouddeploy_v1
Documentation
API details
Cloud Functions API - cloudfunctions_v1
Manages lightweight user-provided functions executed in response to events.
Documentation
API details
Cloud Functions API - cloudfunctions_v2
Manages lightweight user-provided functions executed in response to events.
Documentation
API details
Cloud Identity API - cloudidentity_v1
API for provisioning and managing identity resources.
Documentation
API details
Cloud Key Management Service (KMS) API - cloudkms_v1
Manages keys and performs cryptographic operations in a central cloud service, for direct use by other cloud resources and applications.
Documentation
API details
Cloud Profiler API - cloudprofiler_v2
Manages continuous profiling information.
Documentation
API details
Cloud Resource Manager API - cloudresourcemanager_v1
Creates, reads, and updates metadata for Google Cloud Platform resource containers.
Documentation
API details
Cloud Resource Manager API - cloudresourcemanager_v2
Creates, reads, and updates metadata for Google Cloud Platform resource containers.
Documentation
API details
Cloud Resource Manager API - cloudresourcemanager_v3
Creates, reads, and updates metadata for Google Cloud Platform resource containers.
Documentation
API details
Cloud Scheduler API - cloudscheduler_v1
Creates and manages jobs run on a regular recurring schedule.
Documentation
API details
Cloud Search API - cloudsearch_v1
Cloud Search provides cloud-based search capabilities over Google Workspace data. The Cloud Search API allows indexing of non-Google Workspace data into Cloud Search.
Documentation
API details
Cloud Shell API - cloudshell_v1
Allows users to start, configure, and connect to interactive shell sessions running in the cloud.
Documentation
API details
Cloud Tasks API - cloudtasks_v2
Manages the execution of large numbers of distributed requests.
Documentation
API details
Cloud Trace API - cloudtrace_v2
Sends application trace data to Cloud Trace for viewing. Trace data is collected for all App Engine applications by default. Trace data from other applications can be provided using this API. This library is used to interact with the Cloud Trace API directly. If you are looking to instrument your application for Cloud Trace, we recommend using OpenTelemetry.
Documentation
API details
Cloud Composer API - composer_v1
Manages Apache Airflow environments on Google Cloud Platform.
Documentation
API details
Compute Engine API - compute_v1
Creates and runs virtual machines on Google Cloud Platform.
Documentation
API details
Connectors API - connectors_v1
Enables users to create and manage connections to Google Cloud services and third-party business applications using the Connectors interface.
Documentation
API details
Connectors API - connectors_v2
Enables users to create and manage connections to Google Cloud services and third-party business applications using the Connectors interface.
Documentation
API details
Contact Center AI Insights API - contactcenterinsights_v1
Documentation
API details
Kubernetes Engine API - container_v1
Builds and manages container-based applications, powered by the open source Kubernetes technology.
Documentation
API details
Container Analysis API - containeranalysis_v1
An implementation of the Grafeas API, which stores, and enables querying and retrieval of critical metadata about all of your software artifacts.
Documentation
API details
Content API for Shopping - content_v2_1
Manage your product listings and accounts for Google Shopping
Documentation
API details
Document AI Warehouse API - contentwarehouse_v1
Documentation
API details
Custom Search API - customsearch_v1
Searches over a website or collection of websites
Documentation
API details
Google Cloud Data Catalog API - datacatalog_v1
A fully managed and highly scalable data discovery and metadata management service.
Documentation
API details
Cloud Data Fusion API - datafusion_v1
Cloud Data Fusion is a fully-managed, cloud native, enterprise data integration service for quickly building and managing data pipelines. It provides a graphical interface to increase time efficiency and reduce complexity, and allows business users, developers, and data scientists to easily and reliably build scalable data integration solutions to cleanse, prepare, blend, transfer and transform data without having to wrestle with infrastructure.
Documentation
API details
Data Lineage API - datalineage_v1
Documentation
API details
Database Migration API - datamigration_v1
Manage Cloud Database Migration Service resources on Google Cloud Platform.
Documentation
API details
Data pipelines API - datapipelines_v1
Data Pipelines provides an interface for creating, updating, and managing recurring Data Analytics jobs.
Documentation
API details
Cloud Dataplex API - dataplex_v1
Dataplex API is used to manage the lifecycle of data lakes.
Documentation
API details
Cloud Dataproc API - dataproc_v1
Manages Hadoop-based clusters and jobs on Google Cloud Platform.
Documentation
API details
Cloud Datastore API - datastore_v1
Accesses the schemaless NoSQL database to provide fully managed, robust, scalable storage for your application.
Documentation
API details
Datastream API - datastream_v1
Documentation
API details
Cloud Deployment Manager V2 API - deploymentmanager_v2
The Google Cloud Deployment Manager v2 API provides services for configuring, deploying, and viewing Google Cloud services and APIs via templates which specify deployments of Cloud resources.
Documentation
API details
Campaign Manager 360 API - dfareporting_v3_5
Build applications to efficiently manage large or complex trafficking, reporting, and attribution workflows for Campaign Manager 360.
Documentation
API details
Campaign Manager 360 API - dfareporting_v4
Build applications to efficiently manage large or complex trafficking, reporting, and attribution workflows for Campaign Manager 360.
Documentation
API details
Dialogflow API - dialogflow_v2
Builds conversational interfaces (for example, chatbots, and voice-powered apps and devices).
Documentation
API details
Dialogflow API - dialogflow_v3
Builds conversational interfaces (for example, chatbots, and voice-powered apps and devices).
Documentation
API details
Digital Asset Links API - digitalassetlinks_v1
Discovers relationships between online assets such as websites or mobile apps.
Documentation
API details
API Discovery Service - discovery_v1
Provides information about other Google APIs, such as what APIs are available, the resource, and method details for each API.
Documentation
API details
Display & Video 360 API - displayvideo_v1
Display & Video 360 API allows users to automate complex Display & Video 360 workflows, such as creating insertion orders and setting targeting options for individual line items.
Documentation
API details
Display & Video 360 API - displayvideo_v2
Display & Video 360 API allows users to automate complex Display & Video 360 workflows, such as creating insertion orders and setting targeting options for individual line items.
Documentation
API details
Cloud Data Loss Prevention (DLP) API - dlp_v2
Provides methods for detection, risk analysis, and de-identification of privacy-sensitive fragments in text, images, and Google Cloud Platform storage repositories.
Documentation
API details
Cloud DNS API - dns_v1
Documentation
API details
Google Docs API - docs_v1
Reads and writes Google Docs documents.
Documentation
API details
Cloud Document AI API - documentai_v1
Service to parse structured information from unstructured or semi-structured documents using state-of-the-art Google AI such as natural language, computer vision, translation, and AutoML.
Documentation
API details
Cloud Domains API - domains_v1
Enables management and configuration of domain names.
Documentation
API details
Domains RDAP API - domainsrdap_v1
Read-only public API that lets users search for information about domain names.
Documentation
API details
DoubleClick Bid Manager API - doubleclickbidmanager_v1_1
DoubleClick Bid Manager API allows users to manage and create campaigns and reports.
Documentation
API details
DoubleClick Bid Manager API - doubleclickbidmanager_v2
DoubleClick Bid Manager API allows users to manage and create campaigns and reports.
Documentation
API details
Search Ads 360 API - doubleclicksearch_v2
The Search Ads 360 API allows developers to automate uploading conversions and downloading reports from Search Ads 360.
Documentation
API details
Drive API - drive_v2
Manages files in Drive including uploading, downloading, searching, detecting changes, and updating sharing permissions.
Documentation
API details
Drive API - drive_v3
Manages files in Drive including uploading, downloading, searching, detecting changes, and updating sharing permissions.
Documentation
API details
Drive Activity API - driveactivity_v2
Provides a historical view of activity in Google Drive.
Documentation
API details
Drive Labels API - drivelabels_v2
An API for managing Drive Labels
Documentation
API details
Essential Contacts API - essentialcontacts_v1
Documentation
API details
Eventarc API - eventarc_v1
Build event-driven applications on Google Cloud Platform.
Documentation
API details
Firebase Cloud Messaging API - fcm_v1
FCM send API that provides a cross-platform messaging solution to reliably deliver messages at no cost.
Documentation
API details
Cloud Filestore API - file_v1
The Cloud Filestore API is used for creating and managing cloud file servers.
Documentation
API details
Firebase App Check API - firebaseappcheck_v1
Firebase App Check works alongside other Firebase services to help protect your backend resources from abuse, such as billing fraud or phishing.
Documentation
API details
Firebase App Distribution API - firebaseappdistribution_v1
Documentation
API details
Firebase Dynamic Links API - firebasedynamiclinks_v1
Programmatically creates and manages Firebase Dynamic Links.
Documentation
API details
Firebase Hosting API - firebasehosting_v1
The Firebase Hosting REST API enables programmatic and customizable management and deployments to your Firebase-hosted sites. Use this REST API to create and manage channels and sites as well as to deploy new or updated hosting configurations and content files.
Documentation
API details
Firebase ML API - firebaseml_v1
Access custom machine learning models hosted via Firebase ML.
Documentation
API details
Firebase Remote Config API - firebaseremoteconfig_v1
The Firebase Remote Config API lets developers change the behavior and appearance of their apps without requiring users to download an app update. It is an alternative to, but can be used in tandem with, the Firebase console at https://console.firebase.google.com.
Documentation
API details
Firebase Rules API - firebaserules_v1
Creates and manages rules that determine when a Firebase Rules-enabled service should permit a request.
Documentation
API details
Cloud Firestore API - firestore_v1
Accesses the NoSQL document database built for automatic scaling, high performance, and ease of application development.
Documentation
API details
Fitness API - fitness_v1
The Fitness API for managing users' fitness tracking data.
Documentation
API details
Google Forms API - forms_v1
Reads and writes Google Forms and responses.
Documentation
API details
Google Play Game Services - games_v1
The Google Play games service allows developers to enhance games with social leaderboards, achievements, game state, sign-in with Google, and more.
Documentation
API details
Google Play Game Services Publishing API - gamesconfiguration_v1configuration
The Google Play Game Services Publishing API allows developers to configure their games in Game Services.
Documentation
API details
Google Play Game Management - gamesmanagement_v1management
The Google Play Game Management API allows developers to manage resources from the Google Play Game service.
Documentation
API details
Game Services API - gameservices_v1
Deploy and manage infrastructure for global multiplayer gaming experiences.
Documentation
API details
Backup for GKE API - gkebackup_v1
Backup for GKE is a managed Kubernetes workload backup and restore service for GKE clusters.
Documentation
API details
GKE Hub API - gkehub_v1
Documentation
API details
Anthos On-Prem API - gkeonprem_v1
Documentation
API details
Gmail API - gmail_v1
The Gmail API lets you view and manage Gmail mailbox data like threads, messages, and labels.
Documentation
API details
Gmail Postmaster Tools API - gmailpostmastertools_v1
The Postmaster Tools API is a RESTful API that provides programmatic access to email traffic metrics (like spam reports, delivery errors etc) otherwise available through the Gmail Postmaster Tools UI currently.
Documentation
API details
Groups Migration API - groupsmigration_v1
The Groups Migration API allows domain administrators to archive emails into Google groups.
Documentation
API details
Groups Settings API - groupssettings_v1
Manages permission levels and related settings of a group.
Documentation
API details
Cloud Healthcare API - healthcare_v1
Manage, store, and access healthcare data in Google Cloud Platform.
Documentation
API details
HomeGraph API - homegraph_v1
Documentation
API details
Identity and Access Management (IAM) API - iam_v1
Manages identity and access control for Google Cloud Platform resources, including the creation of service accounts, which you can use to authenticate to Google and make API calls.
Documentation
API details
Identity and Access Management (IAM) API - iam_v2
Manages identity and access control for Google Cloud Platform resources, including the creation of service accounts, which you can use to authenticate to Google and make API calls.
Documentation
API details
IAM Service Account Credentials API - iamcredentials_v1
Creates short-lived credentials for impersonating IAM service accounts. To enable this API, you must enable the IAM API (iam.googleapis.com).
Documentation
API details
Cloud Identity-Aware Proxy API - iap_v1
Controls access to cloud applications running on Google Cloud Platform.
Documentation
API details
Identity Toolkit API - identitytoolkit_v1
The Google Identity Toolkit API lets you use open standards to verify a user's identity.
Documentation
API details
Identity Toolkit API - identitytoolkit_v2
The Google Identity Toolkit API lets you use open standards to verify a user's identity.
Documentation
API details
Google Identity Toolkit API - identitytoolkit_v3
Help the third party sites to implement federated login.
Documentation
API details
Cloud IDS API - ids_v1
Cloud IDS (Cloud Intrusion Detection System) detects malware, spyware, command-and-control attacks, and other network-based threats. Its security efficacy is industry leading, built with Palo Alto Networks technologies. When you use this product, your organization name and consumption levels will be shared with Palo Alto Networks.
Documentation
API details
Indexing API - indexing_v3
Notifies Google when your web pages change.
Documentation
API details
Cloud Talent Solution API - jobs_v3
Cloud Talent Solution provides the capability to create, read, update, and delete job postings, as well as search jobs based on keywords and filters.
Documentation
API details
Cloud Talent Solution API - jobs_v4
Cloud Talent Solution provides the capability to create, read, update, and delete job postings, as well as search jobs based on keywords and filters.
Documentation
API details
Google Keep API - keep_v1
The Google Keep API is used in an enterprise environment to manage Google Keep content and resolve issues identified by cloud security software.
Documentation
API details
Knowledge Graph Search API - kgsearch_v1
Searches the Google Knowledge Graph for entities.
Documentation
API details
KMS Inventory API - kmsinventory_v1
Documentation
API details
Cloud Natural Language API - language_v1
Provides natural language understanding technologies, such as sentiment analysis, entity recognition, entity sentiment analysis, and other text annotations, to developers.
Documentation
API details
Library Agent API - libraryagent_v1
A simple Google Example Library API.
Documentation
API details
Enterprise License Manager API - licensing_v1
The Google Enterprise License Manager API lets you manage Google Workspace and related licenses for all users of a customer that you manage.
Documentation
API details
Local Services API - localservices_v1
Documentation
API details
Cloud Logging API - logging_v2
Writes log entries and manages your Cloud Logging configuration.
Documentation
API details
Managed Service for Microsoft Active Directory API - managedidentities_v1
The Managed Service for Microsoft Active Directory API is used for managing a highly available, hardened service running Microsoft Active Directory (AD).
Documentation
API details
Manufacturer Center API - manufacturers_v1
Public API for managing Manufacturer Center related data.
Documentation
API details
Cloud Memorystore for Memcached API - memcache_v1
Google Cloud Memorystore for Memcached API is used for creating and managing Memcached instances in GCP.
Documentation
API details
Dataproc Metastore API - metastore_v1
The Dataproc Metastore API is used to manage the lifecycle and configuration of metastore services.
Documentation
API details
AI Platform Training & Prediction API - ml_v1
An API to enable creating and using machine learning models.
Documentation
API details
Cloud Monitoring API - monitoring_v3
Manages your Cloud Monitoring data and configurations.
Documentation
API details
My Business Account Management API - mybusinessaccountmanagement_v1
The My Business Account Management API provides an interface for managing access to a location on Google. Note - If you have a quota of 0 after enabling the API, please request for GBP API access.
Documentation
API details
My Business Business Calls API - mybusinessbusinesscalls_v1
The My Business Business Calls API manages business calls information of a location on Google and collect insights like the number of missed calls to their location. Additional information about Business calls can be found at https://support.google.com/business/answer/9688285?p=call_history. If the Google Business Profile links to a Google Ads account and call history is turned on, calls that last longer than a specific time, and that can be attributed to an ad interaction, will show in the linked Google Ads account under the "Calls from Ads" conversion. If smart bidding and call conversions are used in the optimization strategy, there could be a change in ad spend. Learn more about smart bidding. To view and perform actions on a location's calls, you need to be a OWNER, CO_OWNER or MANAGER of the location. Note - If you have a quota of 0 after enabling the API, please request for GBP API access.
Documentation
API details
My Business Business Information API - mybusinessbusinessinformation_v1
The My Business Business Information API provides an interface for managing business information. Note - If you have a quota of 0 after enabling the API, please request for GBP API access.
Documentation
API details
My Business Lodging API - mybusinesslodging_v1
The My Business Lodging API enables managing lodging business information on Google. Note - If you have a quota of 0 after enabling the API, please request for GBP API access.
Documentation
API details
My Business Notifications API - mybusinessnotifications_v1
The My Business Notification Settings API enables managing notification settings for business accounts. Note - If you have a quota of 0 after enabling the API, please request for GBP API access.
Documentation
API details
My Business Place Actions API - mybusinessplaceactions_v1
The My Business Place Actions API provides an interface for managing place action links of a location on Google. Note - If you have a quota of 0 after enabling the API, please request for GBP API access.
Documentation
API details
My Business Q&A API - mybusinessqanda_v1
The My Business Q&A API allows questions and answers to be posted for specific listings. Note - If you have a quota of 0 after enabling the API, please request for GBP API access.
Documentation
API details
My Business Verifications API - mybusinessverifications_v1
The My Business Verifications API provides an interface for taking verifications related actions for locations.
Documentation
API details
Network Connectivity API - networkconnectivity_v1
This API enables connectivity with and between Google Cloud resources.
Documentation
API details
Network Management API - networkmanagement_v1
The Network Management API provides a collection of network performance monitoring and diagnostic capabilities.
Documentation
API details
Network Security API - networksecurity_v1
Documentation
API details
Network Services API - networkservices_v1
Documentation
API details
Notebooks API - notebooks_v1
Notebooks API is used to manage notebook resources in Google Cloud.
Documentation
API details
Notebooks API - notebooks_v2
Notebooks API is used to manage notebook resources in Google Cloud.
Documentation
API details
Google OAuth2 API - oauth2_v2
Obtains end-user authorization grants for use with other Google APIs.
Documentation
API details
On-Demand Scanning API - ondemandscanning_v1
A service to scan container images for vulnerabilities.
Documentation
API details
Organization Policy API - orgpolicy_v2
The Org Policy API allows users to configure governance rules on their GCP resources across the Cloud Resource Hierarchy.
Documentation
API details
OS Config API - osconfig_v1
OS management tools that can be used for patch management, patch compliance, and configuration management on VM instances.
Documentation
API details
Cloud OS Login API - oslogin_v1
You can use OS Login to manage access to your VM instances using IAM roles.
Documentation
API details
PageSpeed Insights API - pagespeedonline_v5
The PageSpeed Insights API lets you analyze the performance of your website with a simple API. It offers tailored suggestions for how you can optimize your site, and lets you easily integrate PageSpeed Insights analysis into your development tools and workflow.
Documentation
API details
Payments Reseller Subscription API - paymentsresellersubscription_v1
Documentation
API details
People API - people_v1
Provides access to information about profiles and contacts.
Documentation
API details
Photos Library API - photoslibrary_v1
Manage photos, videos, and albums in Google Photos
Documentation
API details
Google Play Custom App Publishing API - playcustomapp_v1
API to create and publish custom Android apps
Documentation
API details
Google Play Integrity API - playintegrity_v1
The Play Integrity API helps you check that you're interacting with your genuine app on a genuine Android device powered by Google Play services. The Play Integrity API has replaced SafetyNet Attestation and Android Device Verification.
Documentation
API details
Policy Analyzer API - policyanalyzer_v1
Documentation
API details
Policy Simulator API - policysimulator_v1
Policy Simulator is a collection of endpoints for creating, running, and viewing a Replay. A Replay is a type of simulation that lets you see how your members' access to resources might change if you changed your IAM policy. During a Replay, Policy Simulator re-evaluates, or replays, past access attempts under both the current policy and your proposed policy, and compares those results to determine how your members' access might change under the proposed policy.
Documentation
API details
Policy Troubleshooter API - policytroubleshooter_v1
Documentation
API details
Certificate Authority API - privateca_v1
The Certificate Authority Service API is a highly-available, scalable service that enables you to simplify and automate the management of private certificate authorities (CAs) while staying in control of your private keys.
Documentation
API details
Public Certificate Authority API - publicca_v1
The Public Certificate Authority API may be used to create and manage ACME external account binding keys associated with Google Trust Services' publicly trusted certificate authority.
Documentation
API details
Cloud Pub/Sub API - pubsub_v1
Provides reliable, many-to-many, asynchronous messaging between applications.
Documentation
API details
Pub/Sub Lite API - pubsublite_v1
Documentation
API details
Reader Revenue Subscription Linking API - readerrevenuesubscriptionlinking_v1
readerrevenuesubscriptionlinking.googleapis.com API.
Documentation
API details
Real-time Bidding API - realtimebidding_v1
Allows external bidders to manage their RTB integration with Google. This includes managing bidder endpoints, QPS quotas, configuring what ad inventory to receive via pretargeting, submitting creatives for verification, and accessing creative metadata such as approval status.
Documentation
API details
reCAPTCHA Enterprise API - recaptchaenterprise_v1
Help protect your website from fraudulent activity, spam, and abuse without creating friction.
Documentation
API details
Recommender API - recommender_v1
Documentation
API details
Google Cloud Memorystore for Redis API - redis_v1
Creates and manages Redis instances on the Google Cloud Platform.
Documentation
API details
Google Workspace Reseller API - reseller_v1
Perform common functions that are available on the Channel Services console at scale, like placing orders and viewing customer information
Documentation
API details
Resource Settings API - resourcesettings_v1
The Resource Settings API allows users to control and modify the behavior of their GCP resources (e.g., VM, firewall, Project, etc.) across the Cloud Resource Hierarchy.
Documentation
API details
Retail API - retail_v2
Cloud Retail service enables customers to build end-to-end personalized recommendation systems without requiring a high level of expertise in machine learning, recommendation system, or Google Cloud.
Documentation
API details
Cloud Run Admin API - run_v1
Deploy and manage user provided container images that scale automatically based on incoming requests. The Cloud Run Admin API v1 follows the Knative Serving API specification, while v2 is aligned with Google Cloud AIP-based API standards, as described in https://google.aip.dev/.
Documentation
API details
Cloud Run Admin API - run_v2
Deploy and manage user provided container images that scale automatically based on incoming requests. The Cloud Run Admin API v1 follows the Knative Serving API specification, while v2 is aligned with Google Cloud AIP-based API standards, as described in https://google.aip.dev/.
Documentation
API details
Cloud Runtime Configuration API - runtimeconfig_v1
The Runtime Configurator allows you to dynamically configure and expose variables through Google Cloud Platform. In addition, you can also set Watchers and Waiters that will watch for changes to your data and return based on certain conditions.
Documentation
API details
Safe Browsing API - safebrowsing_v4
Enables client applications to check web resources (most commonly URLs) against Google-generated lists of unsafe web resources. The Safe Browsing APIs are for non-commercial use only. If you need to use APIs to detect malicious URLs for commercial purposes – meaning “for sale or revenue-generating purposes” – please refer to the Web Risk API.
Documentation
API details
Apps Script API - script_v1
Manages and executes Google Apps Script projects.
Documentation
API details
Google Search Console API - searchconsole_v1
The Search Console API provides access to both Search Console data (verified users only) and to public information on an URL basis (anyone)
Documentation
API details
Secret Manager API - secretmanager_v1
Stores sensitive data such as API keys, passwords, and certificates. Provides convenience while improving security.
Documentation
API details
Security Command Center API - securitycenter_v1
Security Command Center API provides access to temporal views of assets and findings within an organization.
Documentation
API details
Service Consumer Management API - serviceconsumermanagement_v1
Manages the service consumers of a Service Infrastructure service.
Documentation
API details
Service Control API - servicecontrol_v1
Provides admission control and telemetry reporting for services integrated with Service Infrastructure.
Documentation
API details
Service Control API - servicecontrol_v2
Provides admission control and telemetry reporting for services integrated with Service Infrastructure.
Documentation
API details
Service Directory API - servicedirectory_v1
Service Directory is a platform for discovering, publishing, and connecting services.
Documentation
API details
Service Management API - servicemanagement_v1
Google Service Management allows service producers to publish their services on Google Cloud Platform so that they can be discovered and used by service consumers.
Documentation
API details
Service Networking API - servicenetworking_v1
Provides automatic management of network configurations necessary for certain services.
Documentation
API details
Service Usage API - serviceusage_v1
Enables services that service consumers want to use on Google Cloud Platform, lists the available or enabled services, or disables services that service consumers no longer use.
Documentation
API details
Google Sheets API - sheets_v4
Reads and writes Google Sheets.
Documentation
API details
Google Site Verification API - siteverification_v1
Verifies ownership of websites or domains with Google.
Documentation
API details
Google Slides API - slides_v1
Reads and writes Google Slides presentations.
Documentation
API details
Smart Device Management API - smartdevicemanagement_v1
Allow select enterprise partners to access, control, and manage Google and Nest devices programmatically.
Documentation
API details
Cloud Source Repositories API - sourcerepo_v1
Accesses source code repositories hosted by Google.
Documentation
API details
Cloud Spanner API - spanner_v1
Cloud Spanner is a managed, mission-critical, globally consistent and scalable relational database service.
Documentation
API details
Cloud Speech-to-Text API - speech_v1
Converts audio to text by applying powerful neural network models.
Documentation
API details
Cloud Storage JSON API - storage_v1
Stores and retrieves potentially large, immutable data objects.
Documentation
API details
Storage Transfer API - storagetransfer_v1
Transfers data from external data sources to a Google Cloud Storage bucket or between Google Cloud Storage buckets.
Documentation
API details
Street View Publish API - streetviewpublish_v1
Publishes 360 photos to Google Maps, along with position, orientation, and connectivity metadata. Apps can offer an interface for positioning, connecting, and uploading user-generated Street View images.
Documentation
API details
Security Token Service API - sts_v1
The Security Token Service exchanges Google or third-party credentials for a short-lived access token to Google Cloud resources.
Documentation
API details
Tag Manager API - tagmanager_v1
This API allows clients to access and modify container and tag configuration.
Documentation
API details
Tag Manager API - tagmanager_v2
This API allows clients to access and modify container and tag configuration.
Documentation
API details
Google Tasks API - tasks_v1
The Google Tasks API lets you manage your tasks and task lists.
Documentation
API details
Cloud Testing API - testing_v1
Allows developers to run automated tests for their mobile applications on Google infrastructure.
Documentation
API details
Cloud Text-to-Speech API - texttospeech_v1
Synthesizes natural-sounding speech by applying powerful neural network models.
Documentation
API details
Cloud TPU API - tpu_v1
TPU API provides customers with access to Google TPU technology.
Documentation
API details
Cloud TPU API - tpu_v2
TPU API provides customers with access to Google TPU technology.
Documentation
API details
Traffic Director API - trafficdirector_v2
Documentation
API details
Transcoder API - transcoder_v1
This API converts video files into formats suitable for consumer distribution. For more information, see the Transcoder API overview.
Documentation
API details
Cloud Translation API - translate_v3
Integrates text translation into your website or application.
Documentation
API details
Travel Impact Model API - travelimpactmodel_v1
Travel Impact Model API lets you query travel carbon emission estimates.
Documentation
API details
Google Vault API - vault_v1
Retention and eDiscovery for Google Workspace. To work with Vault resources, the account must have the required Vault privileges and access to the matter. To access a matter, the account must have created the matter, have the matter shared with them, or have the View All Matters privilege. For example, to download an export, an account needs the Manage Exports privilege and the matter shared with them.
Documentation
API details
Chrome Verified Access API - verifiedaccess_v1
API for Verified Access chrome extension to provide credential verification for chrome devices connecting to an enterprise network
Documentation
API details
Chrome Verified Access API - verifiedaccess_v2
API for Verified Access chrome extension to provide credential verification for chrome devices connecting to an enterprise network
Documentation
API details
versionhistory.googleapis.com API - versionhistory_v1
Version History API - Prod
Documentation
API details
Cloud Video Intelligence API - videointelligence_v1
Detects objects, explicit content, and scene changes in videos. It also specifies the region for annotation and transcribes speech to text. Supports both asynchronous API and streaming API.
Documentation
API details
Cloud Vision API - vision_v1
Integrates Google Vision features, including image labeling, face, logo, and landmark detection, optical character recognition (OCR), and detection of explicit content, into applications.
Documentation
API details
VM Migration API - vmmigration_v1
Use the Migrate to Virtual Machines API to programmatically migrate workloads.
Documentation
API details
Serverless VPC Access API - vpcaccess_v1
API for managing VPC access connectors.
Documentation
API details
Web Fonts Developer API - webfonts_v1
The Google Web Fonts Developer API lets you retrieve information about web fonts served by Google.
Documentation
API details
Web Risk API - webrisk_v1
Documentation
API details
Web Security Scanner API - websecurityscanner_v1
Scans your Compute and App Engine apps for common web vulnerabilities.
Documentation
API details
Workflow Executions API - workflowexecutions_v1
Execute workflows created with Workflows API.
Documentation
API details
Workflows API - workflows_v1
Manage workflow definitions. To execute workflows and manage executions, see the Workflows Executions API.
Documentation
API details
Workload Manager API - workloadmanager_v1
Documentation
API details
YouTube Data API v3 - youtube_v3
The YouTube Data API v3 is an API that provides access to YouTube data, such as videos, playlists, and channels.
Documentation
API details
YouTube Analytics API - youtubeanalytics_v2
Retrieves your YouTube Analytics data.
Documentation
API details
YouTube Reporting API - youtubereporting_v1
Schedules reporting jobs containing your YouTube Analytics data and downloads the resulting bulk data reports in the form of CSV files.
Documentation
API details

我要回帖

更多关于 Account 的文章

 

随机推荐