0

我有一个调用 ruby​​ on rails web 服务器的 php 脚本。该 Web 服务器旨在成为女巫上的 api 服务器,我将从 php 脚本进行多次调用。

我创建了一个测试路由/api/test,看看我的脚本是否可以成功调用我的 api 服务器。

在开发中一切正常,没有发现任何问题。但是今天,当我将它上传到heroku时,我得到了Error H12 (Request timeout)

所以我在浏览器上打开了相同的网址。在浏览器中我看不到任何错误,并且页面以应有的方式加载。

我的 php 脚本是这样的:

    $ch = curl_init($url);

curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $http_method); // GET, POST, PUT and DELETE, one at the time
curl_setopt($ch, CURLOPT_HTTPHEADER, $header_fields);
curl_setopt($ch, CURLOPT_POSTFIELDS, $body_data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$response = curl_exec($ch);
curl_close($ch);

return $response;

这是错误日志,顺便说一句,有时 GET 请求甚至不会显示为错误或成功:

2012-08-23T13:28:07+00:00 heroku[router]: Error H12 (Request timeout) -> POST *.herokuapp.com/api/test dyno=web.1 queue= wait= service=30000ms status=503 bytes=0
2012-08-23T13:28:08+00:00 heroku[router]: Error H12 (Request timeout) -> PUT *.herokuapp.com/api/test dyno=web.1 queue= wait= service=30000ms status=503 bytes=0
2012-08-23T13:28:09+00:00 heroku[router]: Error H12 (Request timeout) -> DELETE *.herokuapp.com/api/test dyno=web.1 queue= wait= service=30000ms status=503 bytes=0

有时 4 个请求中的一个会返回一些东西,但就像不小心一样

有人能帮我吗?我真的需要这个脚本工作

4

1 回答 1

0

发现了问题。

这是我公司的防火墙。

不知道在哪里,但是一旦我的机器清除了限制,它现在就可以工作了

于 2012-08-23T14:37:10.853 回答