如何自动下载 Google AdWords 报告

发布于 2024-09-19 04:09:47 字数 174 浏览 3 评论 0原文

是否可以在不登录 AdWords 网站的情况下以编程方式下载 AdWords 报告(包含有关广告系列和关键字效果的信息,如展示次数、点击次数、点击率等)?

我知道他们提供了 API,但看来您必须获得批准,而且我不需要所有服务 - 只需下载基本的 CSV 报告。

您有什么建议吗?

谢谢!

Is it possible to programmatically download an AdWords report (containing information about campaign and keyword performance like impressions, clicks, CTR, etc.) without logging in to the AdWords web site?

I'm aware that they provide an API, but it appears that you have to be approved, and I don't need all the services -- just basic CSV report download.

Do you have any suggestions?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

或十年 2024-09-26 04:09:47

据我所知,您无法在未登录的情况下以编程方式下载 AdWords 报告。但您可以创建自动登录 AdWords 帐户然后下载所有详细信息的脚本。如果您登录 google adwords 帐户,则可以下载。我对脚本没有更多的想法,但我的朋友使用这种技术来节省时间。

As for as I know you could not programmatically download an AdWords report without login. But it is possible that you create script that automatically login in adwords accounts and then downloads all details. If you are loging in google adwords accounts then you can download. I have not much more idea abut script but my friend use this technique to save time.

你在看孤独的风景 2024-09-26 04:09:47

如果您不想登录 AdWords 网站,可以尝试 Google AdWords 编辑器 我个人没有使用过它,但值得一试,看看它是否可以创建报告。

如果您有自己的个人网站,Google 可能会免费为您提供一些“API 单元”。您可以使用他们的 API 来获取您的统计数据。该 API 几乎具有 AdWords 网站的所有功能,因此值得研究。

If you don't want to log into Adwords web site, you could try Google AdWords Editor I personally haven't used it, but its worth a try to see if it can create reports.

If you have your own personal site Google may give you some "API Units" for free. And you could use their API to get your stats. The API has almost all the capability of what the Adwords site does, so its something to look into.

是伱的 2024-09-26 04:09:47

使用 Firefox 转到 adwords 后端的报告部分。然后按 + 打开便笺本。您需要运行此代码。它将针对每个报告一一单击“立即运行”按钮。您可以检查 a 标记的 innerHTML 来查看您真正想要单击哪个范围的索引来获取所有报告。如果需要,您可能还想更改 7000 毫秒延迟。我将 Firefox 设置更改为自动保存 *.csv 的所有文件类型,在单击“开始”对话框中的“确定”后,在开始之前给它一些时间,大约 2-5 分钟。

function competitor_download(i){
 var competitor_tags = document.getElementsByTagName("a"); 
 //alert(i+"|"+competitor_tags[i].innerHTML);
 if(competitor_tags[i].innerHTML == "Run now"){
    competitor_tags[i].click();
 }
}

alert("Start");

for(i=15;i<260;i++){
var competitor_tags2 = document.getElementsByTagName("a");
 if(competitor_tags2[i].innerHTML == "Run now"){
  window.setTimeout(competitor_download,((i-15)*7000), i);
 }
}

Go to the reports section in adwords backend using firefox. Then press <SHIFT>+<F4> to open up the scratchpad. You would need to run this code. It would click the "Run Now" button one by one for each report. You can check the innerHTML of the a tags to see which range of indexes you really want to click on to get all the reports. You may want to change the 7000 milisecond delay also if needed. I changed my firefox settings to automatically save all filetypes of *.csv Give it some time maybe 2-5 minutes before it begins after clicking the OK from the "Start" dialog box.

function competitor_download(i){
 var competitor_tags = document.getElementsByTagName("a"); 
 //alert(i+"|"+competitor_tags[i].innerHTML);
 if(competitor_tags[i].innerHTML == "Run now"){
    competitor_tags[i].click();
 }
}

alert("Start");

for(i=15;i<260;i++){
var competitor_tags2 = document.getElementsByTagName("a");
 if(competitor_tags2[i].innerHTML == "Run now"){
  window.setTimeout(competitor_download,((i-15)*7000), i);
 }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文