有兴趣分享您对 Google Ads API 的反馈吗?
注册即可获邀参与用户调研!
在 Docker 容器中运行
您也可以执行这些示例,开发您的 Google Ads API 应用
使用提供的
Dockerfile 和
docker-compose.yml.
为此(假设您有一个 Docker 环境)
已安装),请在
目录中:
docker-compose up --build -d
这将提供一个具有所有所需依赖项的 Docker 容器实例
。
如需在 Docker 容器内打开 BASH shell,您可以运行 docker ps
来获取
容器 ID,然后运行:
docker exec -it <YOUR_CONTAINER_ID> bash
这样,你就可以在
容器。
简而言之,如果您只有一个 Docker 容器在运行
还可以运行以下命令:
docker exec -it $(docker ps -a -q) bash
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-09-12。
[null,null,["最后更新时间 (UTC):2024-09-12。"],[[["Utilize Docker for seamless execution of Google Ads API examples and application development within a pre-built environment."],["Initiate the Docker environment using `docker-compose up --build -d` after cloning the repository."],["Access a BASH shell within the Docker container via `docker exec -it \u003cYOUR_CONTAINER_ID\u003e bash` to interact with code samples and applications."],["Leverage `docker exec -it $(docker ps -a -q) bash` as a shortcut for accessing the container when only one is running."]]],[]]