来自远程服务器的 XMLHttpRequest

发布于 2024-11-04 10:31:43 字数 251 浏览 0 评论 0原文

我目前正在开发一个网站,我需要集成第三方提供的一些 XML 市场数据。他们向我发送了很多有关如何请求不同类型信息以及如何发出登录请求的文档。然而,我的研究告诉我,除非您运行代理,否则您不能使用 XMLHttpRequest 访问远程服务器的数据,然后代理可以为您发出请求。另外,我的理解是第三方登录每 24 小时就会过期。那么我可以让我的理论代理每天自动更新登录请求吗?抱歉,如果我的问题听起来很愚蠢——我对 XML 非常陌生,如果有任何帮助,我们将不胜感激!

干杯, 简

I am currently developing a site, and I need to integrate some XML market data a third party is providing. They sent me lots of documents about how to make requests for different types of information, and also how to make a login request. However, my research tells me you cannot use XMLHttpRequest to access data from remote servers unless you are running a proxy, and then the proxy can make the request for you. Also, my understanding is that the third party's logins expire every 24 hours. Can I then have my theoretical proxy automatically renew the login request every day? Sorry if my questions sound dumb -- I am so very new to XML and any help would be appreciated!

Cheers,
Jane

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我恋#小黄人 2024-11-11 10:31:43

你的研究是正确的。不能直接使用XMLHttpRequest进行跨域请求。使用代理是一种解决方案。另一种是要求第 3 方实现 JSONP: http://en.wikipedia.org/wiki/JSONP< /a>

Your research is correct. You cannot directly make cross domain requests with XMLHttpRequest. Using a proxy is one solution. Another is to ask the 3rd party to implement JSONP: http://en.wikipedia.org/wiki/JSONP

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文