我正在为我的公司开发苹果应用程序,
我在服务器端使用PHP,laravel框架向APNS发送消息。
为了测试,我使用硬编码设备令牌。 我在一台我硬编码的设备上工作。
所以我提前发送apns,一个在功能中请求的设备令牌。 因此,当我调用此函数时,它从数据库获取设备令牌并发送到apns。
我收到错误
fwrite(): SSL operation failed with code 1. OpenSSL Error messages: error:1409F07F:SSL routines:SSL3_WRITE_PENDING:bad write retry
和
fwrite(): SSL: Broken pipe
我将代码更改回第一次测试,但它不像以前那样工作。
任何人都知道我做错了什么,或者我在请求中犯了错误?
注意这是我的代码
$apnsServer = 'ssl://gateway.sandbox.push.apple.com:2195';
$privateKeyPassword = 'my_private_key';
$id = $request->input('id');
$message = "message_here";
$userSelected = User::select('device_token')->where('id', $id)->first();
$deviceToken = str_replace(' ', '', $userSelected['device_token']);
$pushCertAndKeyPemFile = $_SERVER['DOCUMENT_ROOT'].'my_certificate.pem';
$stream = stream_context_create();
stream_context_set_option($stream, 'ssl', 'passphrase', $privateKeyPassword);
stream_context_set_option($stream, 'ssl', 'local_cert', $pushCertAndKeyPemFile);
$connectionTimeout = 30;
$connectionType = STREAM_CLIENT_CONNECT | STREAM_CLIENT_PERSISTENT;
$connection = stream_socket_client($apnsServer, $errorNumber, $errorString, $connectionTimeout, $connectionType, $stream);
if (!$connection){
echo "Failed to connect to the APNS server. Error = $errorString <br/>";
exit;
}else{
echo "Successfully connected to the APNS. Processing...</br>";
}
$messageBody['aps'] = array('alert' => $message, 'sound' => 'default', 'badge' => 1);
$payload = json_encode($messageBody);
$notification = chr(0) . pack('n', 32) . pack('H*', $deviceToken) . pack('n', strlen($payload)) . $payload;
$wroteSuccessfully = fwrite($connection, $notification, strlen($notification));
if (!$wroteSuccessfully){
echo "Could not send the message<br/>";
} else {
echo "Successfully sent the message<br/>";
}
答案 0 :(得分:2)
当我们的服务器向APNS发送PUSH消息时,需要检查每个请求的响应错误。 检查错误后,我收到错误消息8,无效令牌
使用开发证书时,有用户注册使用开发应用程序,他们获得设备令牌 但是当您更改为生产时,您必须更改生产证书,并且注册用户需要获取新设备令牌以使PUSH通知正常工作
因为您在开发应用中获得的设备令牌不适用于生产证书..
错过重要的事情完全是我的错误。