我有一个关于使用Google Adwords脚本捕获301重定向的问题。 我尝试过滤的只是重定向到其他域的url-s,而不是例如从mysite.com重定向到www.mysite.com的url-s。 有没有办法做到这一点? 我想我必须使用UrlFetchApp方法,然后将原始网址与标题中返回的网址进行比较。
谢谢:)
答案 0 :(得分:1)
您可以将UrlFetchApp与getResponseCode()
结合使用 // The code below logs the HTTP status code from the response received
// when fetching the Google home page.
// It should be 200 if the request succeeded.
var response = UrlFetchApp.fetch("http://www.google.com/");
Logger.log(response.getResponseCode());
因此,在您的情况下,您可以检查响应代码是否为301