可以传递给 Wininet 函数 HttpOpenRequest 的最大 URL 长度是多少?
可以传递给 Wininet 函数 HttpOpenRequest 的最大 URL 长度是多少?
What is the maximum URL length you can pass to the Wininet function, HttpOpenRequest?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
WinInet.h 中有一些最大长度常量:
There are some max length consts in WinInet.h:
HttpOpenRequest 没有最大长度,但您的目标服务器软件可能会对您的 URL 长度有限制。
(来自 Boutell.com)
HttpOpenRequest does not have a maximum length but server software you are targeting will likely have a limit on your URL length.
(from Boutell.com)
我建议少于 2000 个字符。 ,但是这篇知识库文章建议 Internet Explorer 的限制为 2083,这很可能适用于你的情况也是如此。
I would suggest less than 2000 characters., but this KB article suggests Internet Explorer has a limit of 2083, which may well apply to your case too.