我对服务器(生产环境)中特定URL的所有POST类型请求都需要大约3分钟才能返回响应,也就是说,在提交表单几秒钟后,我查看了API网站,我的数据已发布,但是在我的网站上,请求正在等待处理,恰好3分钟后,它已完成返回必要的数据。
我认为某事保持了3分钟的响应,因为我在本地环境中测试了相同的代码并且运行很快(大约花了10秒钟),是什么原因导致这种“缓慢”?
看一小段我的代码,该代码在本地环境中可以正常工作,但是生产需要3分钟才能返回API结果。
public function __construct()
{
$this->url = 'https://api.binance.com/api/';
$this->curl = curl_init();
$this->recvWindow = 60000;
$curl_options = [
CURLOPT_SSL_VERIFYPEER => false,
CURLOPT_SSL_VERIFYHOST => false,
CURLOPT_USERAGENT => 'Binance PHP API Agent',
CURLOPT_RETURNTRANSFER => true,
];
curl_setopt_array($this->curl, $curl_options);
}
private function privateRequest($url, $params = [], $method = 'GET')
{
$params['timestamp'] = number_format((microtime(true) * 1000), 0, '.', '');
$params['recvWindow'] = $this->recvWindow;
$query = http_build_query($params, '', '&');
$sign = hash_hmac('sha256', $query, $this->secret);
$headers = array(
'X-MBX-APIKEY: ' . $this->key,
);
curl_setopt($this->curl, CURLOPT_HTTPHEADER, $headers);
curl_setopt($this->curl, CURLOPT_URL, $this->url . $url . "?{$query}&signature={$sign}");
curl_setopt($this->curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($this->curl, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($this->curl, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
curl_setopt($this->curl, CURLOPT_ENCODING, '');
if ($method == "POST") {
curl_setopt($this->curl, CURLOPT_POST, 1);
curl_setopt($this->curl, CURLOPT_POSTFIELDS, array());
}
if($method == 'GET'){
curl_setopt($this->curl, CURLOPT_POST, false);
}
if ($method == 'DELETE') {
curl_setopt($this->curl, CURLOPT_CUSTOMREQUEST, $method);
}
//Get result
$result = curl_exec($this->curl);
if ($result === false) {
throw new \Exception('CURL error: ' . curl_error($this->curl));
}
// Decode results
$result = json_decode($result, true);
if (!is_array($result) || json_last_error()) {
throw new \Exception('JSON decode Error');
}
return $result;
}
curl不会产生任何错误,因为API会返回状态200,其中包含所需的数据,问题是它需要3分钟才能返回响应。
注意:在其他API中,该帖子在生产中效果很好,最多在5秒内返回响应。
答案 0 :(得分:0)
不确定参数中的timestamp和recvWindow是什么,但是如果使用它们检查特定的时间窗口,那么我将确保服务器配置了正确的时区。