我为 ios 开发了一个应用程序,并已在应用程序商店发布。推送通知系统在开发中运行良好,但现在,我根本没有收到任何通知。在发布之前,我已经生成了与启用推送并配置了生产推送 SSL 证书的应用程序 ID 关联的开发配置文件。我已经下载了生产推送 SSL 证书并将其安装在我的钥匙串访问中,将其及其私钥导出,将它们转换为 pem 并将它们合并到一个唯一的 pem 文件中,我将其上传到我的服务器,其中包含发送的 php 脚本通知。我已将我的 php 脚本中的服务器更改为生产服务器(ssl://gateway.push.apple.com:2195)。脚本似乎仍然发送通知并且不会触发任何错误。
我错过了什么?
这是我的 php 脚本:
<?PHP
/* Here there's Code to retrieve device tokens and put it in a variable $deviceToken from my online database and then...*/
$message = "Message to be sent";
$payload = '{
"aps" :
{ "alert" : "'.$message.'",
"badge" : 1,
"sound" : "bingbong.aiff"
}
}';
$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'ck.pem');
stream_context_set_option($ctx, 'ssl', 'passphrase', 'secret');
// se l'app è già sull'appstore togliere sandbox e lasciare solo gateway.push.apple.com:2195
// invece di gateway.sandbox.push.apple.com:2195
$fp = stream_socket_client('ssl://gateway.push.apple.com:2195', $err, $errstr, 60, STREAM_CLIENT_CONNECT, $ctx);
if(!$fp){
print "Failed to connect $err $errstrn";
return;
} else {
print "Notifications sent! </br>";
}
foreach($devArray as $deviceToken){
$msg = chr(0) . pack("n",32) . pack('H*', str_replace(' ', '', $deviceToken)) . pack ("n",strlen($payload)) . $payload;
print "sending message :" . $payload . "n to device:".$deviceToken."</br>";
fwrite($fp, $msg);
}
fclose($fp);
?>