iOSpush notification return code 102
I'm running push notification form server to my iphone.
... ... // Encode the payload as JSON
$payload = json_encode($body);
// Build the binary notification
$msg = chr(0) . pack('n', 32) . pack('H*', $deviceToken) . pack('n', strlen($payload)) . $payload;
$result = fwrite($fp, $msg, strlen($msg));
when I echo $result. I shown "102". What does this mean?
1xx Informational
**102 Processing (WebDAV; RFC 2518)**
As a WebDAV request may contain many sub-requests involving file operations, it may take a long time to complete the request. This code indicates that the server has received and is processing the request, but no response is available yet.[2] This prevents the client from timing out and assuming the request was lost. Source of this Wikipedia List of HTTP status codes
链接地址: http://www.djcxy.com/p/57430.html上一篇: 此证书具有无效的发行人Apple推送服务
下一篇: iOSpush通知返回码102