1

我有一个应用程序,我在服务器端函数中使用 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.

没有帮助。

4

2 回答 2

0

对不起,我的错。我正在使用一个

fs.writeFile('../../../../../../data/')

在不允许写入的文件夹中*.meteor.com
这导致了 HTTP 状态码503

于 2015-10-21T19:42:29.907 回答
-1

由于您收到“HTTP 状态代码 503”,这可能不是您可以或需要解决的问题。

根据wicked peter的说法,问题可能不是你的,而是服务器的:

503 Service Unavailable
The server is currently unavailable (because it is overloaded or down for maintenance). Generally, this is a temporary state
于 2015-10-20T22:42:14.977 回答