我有一个应用程序,我在服务器端函数中使用 Meteor.http.call()。
var ret = Meteor.http.call("GET", "https://www.quandl.com/api/v1/datasets/SF1/<...>");
这使用本地主机流星服务器工作:我将数据放回ret
变量中。
我将应用程序部署到ruleoneinvesting.meteor.com
,现在我使用相同的调用得到了这个错误:
XMLHttpRequest cannot load https://ddp--4645-ruleoneinvesting.meteor.com/sockjs/info?cb=p7czcbhqun. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://ruleoneinvesting.meteor.com' is therefore not allowed access. The response had HTTP status code 503.
这没有帮助。