WinHttp 收到 404 文件未找到
我正在使用 WinHttp 抓取网页,结果页面是该网站的 404 文件未找到页面。 我知道该代码可以工作,因为我已经在其他网站上对其进行了测试。 该页面是一个普通的 http 协议和 .html 文件。
我能做些什么?
I am grabbing a webpage with WinHttp and the resulting page is the site's 404 file not found page. I know that the code works as I have tested it with other websites. The page in question is a normal http protocol and .html file.
What can I do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你没有付出太多来继续下去。 我可能会从
WinHttp
调用中跟踪 HTTP 会话开始,并将其与基于浏览器的工作会话中的跟踪进行比较,看看有什么不同。 可以是任何内容,从 cookie 到referer
字段,再到服务器可能不喜欢的“谁知道什么”。You don't give a whole lot to go on. I'd probably start with a trace of the HTTP session from your
WinHttp
calls and compare it with a trace from a working browser-based session and see what's different. Could be anything from a cookie to areferer
field to who-knows-what that the server might not like.