如何在 Adwords API v201003 中使用出价模拟器
在最新版本的 Adwords API 中,Google 宣布< /a> 出价模拟器的可用性(即获得估计点击次数、费用和广告排名的能力)。
但是,我找不到任何示例代码。谁能提供一个示例,说明如何使用 Java 中的 Adwords v201003 API 在给定关键字、匹配类型和最高每次点击费用的情况下查找点击次数、费用和广告位置?
In the latest version of the Adwords API, Google announced the availability of the Bid Simulator (i.e. the ability to get estimated clicks, cost, and ad position).
However, I can't find any example code for this. Can anyone provide an example of how to lookup clicks, cost, and ad position given a keyword, match type, and max cpc using the Adwords v201003 API in Java?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
据我所知,我认为您指的是 BidLandscapeService?至少对于 Java,如果您下载 beta Java 客户端,有一个示例,'GetCriterionBidLandscape.java',它检索现有的指定出价环境,从中设置操作应该相当简单。 201003 版本仍处于测试阶段,因此我想相应的 Set 示例仍在开发中。
As far as I can tell I think you mean the BidLandscapeService? For Java at least, if you download the beta Java client, there's an example, 'GetCriterionBidLandscape.java' which retrieves existing specified bid landscapes, from which the Set operations should be fairly straightfowrard. The 201003 release is still beta so I imagine that a corresponding Set example is still in the works.
您正在寻找 BidLandscapeService。您输入一个 AdGroup 并返回一组 LandscapePoints。每个点都有估计的点击次数和费用。
You're looking for the BidLandscapeService. You feed in an AdGroup and get back a collection of LandscapePoints. Each of those points has the estimated clicks and cost.