我正在使用此代码对Apple的服务器执行应用内收据验证。 在运行此脚本的大约50%的时间内,一切正常。 但是,在另外50%的时间里,我得到一个空的json响应。我没有任何例外。 有什么想法吗?
function do_post_request($url, $data, $optional_headers = null)
{
$params = array('http' => array(
'method' => 'POST',
'content' => $data
));
if ($optional_headers !== null) {
$params['http']['header'] = $optional_headers;
}
$ctx = stream_context_create($params);
$fp = @fopen($url, 'rb', false, $ctx);
if (!$fp) {
throw new Exception("Problem with $url, $php_errormsg");
}
$meta = stream_get_meta_data($fp);
print_r($meta);
stream_set_timeout($fp, 200);
$response = @stream_get_contents($fp);
if ($response === false) {
throw new Exception("Problem reading data from $url, $php_errormsg");
}
return $response;
}
$appleURL = "https://buy.itunes.apple.com/verifyReceipt";
$receipt = json_encode(array("receipt-data" => $receiptdata));
$response_json = do_post_request($appleURL, $receipt);
$response = json_decode($response_json);
var_dump($response_json);
这是我在var_dump流元数据
时得到的结果array(10) { ["wrapper_data"]=> array(2) { ["headers"]=> array(0) { } ["readbuf"]=> resource(6) of type (stream) } ["wrapper_type"]=> string(4) "cURL" ["stream_type"]=> string(4) "cURL" ["mode"]=> string(2) "rb" ["unread_bytes"]=> int(0) ["seekable"]=> bool(false) ["uri"]=> string(42) "https://buy.itunes.apple.com/verifyReceipt" ["timed_out"]=> bool(false) ["blocked"]=> bool(true) ["eof"]=> bool(false) }
答案 0 :(得分:0)
我遇到了这种类型的问题,通过tcp与其他人的服务器进行通信。我从来没有完全理解根本原因,但通过阻止[在用例中可以容忍]来使事情发挥作用
stream_set_blocking ($conn, true);
// other stuff
stream_set_timeout($conn, 60);
$connResponse = stream_get_contents($conn);