gpt4 book ai didi

python - 页面上的广告导致抓取问题 "Bad Gateway"

转载 作者:太空宇宙 更新时间:2023-11-03 20:41:31 32 4
gpt4 key购买 nike

我正在尝试使用 pdfkit 使用 Python 将一些网页保存为 PDF。上周它运行得很好(所以,我想这不是我的编码错误)。现在,该网站更改了一些广告,导致出现“错误网关”问题。我认为这可能是因为一些网络信标。当 pdfkit 尝试将页面另存为 PDF 时,我收到以下错误代码:

Warning: A slow script was stopped
Error: Failed to load https://sync-eu.connectad.io/syncer/1,
with network status code 301 and http status code 502 - Error
downloading https://sync-eu.connectad.io/syncer/1 - server
replied: Bad Gateway

我想要保存的页面源代码中的脚本可能会导致错误:

<script type="text/javascript">
var ss=(function(){var pixelUrls=['https://sync-eu.connectad.io/syncer/1'];var MINS=60*1000;var SMARTSYNC_CALLBACK='serverbidCallBids';var SYNC_COOKIE_TTL=0*MINS;var SYNC_COOKIE='sb_ss';var pixelsInFlight=[];var inSecure=window.location.protocol.indexOf('s')<0;function createPixel(src){var p=document.createElement('iframe');p.setAttribute("height","0px");p.setAttribute("width","0px");p.setAttribute("border","0");p.setAttribute("frameBorder","0");p.setAttribute("style","position:absolute;");p.onerror=function(){return this.style.display="none";};p.setAttribute("src",src);if(window[SMARTSYNC_CALLBACK]){p.onload=function(){var i=pixelsInFlight.indexOf(src);if(i>=0){pixelsInFlight.splice(i,1);}
if(!pixelsInFlight.length){window[SMARTSYNC_CALLBACK]();}};pixelsInFlight.push(src);}
document.body.appendChild(p);}
function createCookie(){if(document.cookie.indexOf(SYNC_COOKIE)<0){var date=new Date();date.setTime(date.getTime()+ SYNC_COOKIE_TTL);return(document.cookie=SYNC_COOKIE+"; expires="+ date.toUTCString()+"; path=/"||1);}}
if(createCookie()){for(var i=0;i<pixelUrls.length;i++){var pixelUrl=pixelUrls[i];if(inSecure||pixelUrl.match(/^https:/)){createPixel(pixelUrl);}}}else if(window[SMARTSYNC_CALLBACK]){window[SMARTSYNC_CALLBACK]();}});var waitForDOM=function(evt){if(evt.target.readyState==="interactive"){ss();}}
document.addEventListener('readystatechange',waitForDOM,false);
</script>

问题是 pdfkit 保存了 PDF,但由于错误,它中止了循环,因此只保存了一页而不是大约十页。

如果有人能帮助我解决这个问题,那就太好了。

最佳答案

好的,正如 git 上报告的那样,wkhtmltopdf 有很多类似的问题:https://github.com/wkhtmltopdf/wkhtmltopdf/issues/2051

我现在的解决方案是简单地关闭所有 JavaScript。对于许多用户来说,这不是一个好的解决方案。但是,如果有人像我一样陷入困境,那么值得一试:

import pdfkit
path2wkthmltopdf = r"C:\Program Files\wkhtmltopdf\bin\wkhtmltopdf.exe" #replace path
pdfconfig = pdfkit.configuration(wkhtmltopdf=path2wkthmltopdf)
options = {'encoding': "UTF-8",'disable-javascript': None}
pdfkit.from_url(your_url, your_path2save, configuration=pdfconfig, options=options)

wkhtmltopdf 的更多选项可以在:https://wkhtmltopdf.org/usage/wkhtmltopdf.txt 上找到。

关于python - 页面上的广告导致抓取问题 "Bad Gateway",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56837278/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com