我最近发现了一段代码,以帮助我将实时价格纳入Google表格并希望对其进行扩展:
=min(importxml("http://shop.tcgplayer.com/productcatalog/product/show?IsProductNameExact=true&ProductName="&A5, "//div[contains(@class, 'scCardContent')]/span[@*] | //div[contains(@class, 'priceGuidePricePointDiv')][1]//tr[2]/td[contains(@class, 'priceGuidePricePointData')][1]"))
但是,当我在脚本编辑器中编写xml请求时,我无法成功请求。
var xml = UrlFetchApp.fetch(tcgUrl).getContentText();
我尝试了几种不同的方法但是被Incapsula阻止了(?)。
<html style="height:100%"><head><META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW"><meta name="format-detection" content="telephone=no"><meta name="viewport" content="initial-scale=1.0"><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"></head><body style="margin:0px;height:100%"><iframe src="/_Incapsula_Resource?CWUDNSAI=9&xinfo=5-85037313-0 0NNN RT(1489553959732 1) q(0 -1 -1 -1) r(0 -1) B12(4,315,0) U18&incident_id=490000360254449935-589713359258649157&edet=12&cinfo=04000000" frameborder=0 width="100%" height="100%" marginheight="0px" marginwidth="0px">Request unsuccessful. Incapsula incident ID: 490000360254449935-589713359258649157</iframe></body></html>
我做错了吗?有办法解决这个问题吗?
答案 0 :(得分:0)
您应该利用他们的API而不是直接抓取网站,因为这是访问定价数据的首选方式。