未发送 APNS 推送通知
APNS push notifications not being sent
实际上我是 APNS 的新手,我一直在使用在线论坛和博客的一些帮助。我正在使用 PHP 来实现服务器端。以下是我的PHP代码
<?php
// Put your device token here (without spaces):
$deviceToken = '0f744707bebcf74f9b7c25d48e3358945f6aa01da5ddb387462c7eaf61bbad78';
// Put your private key's passphrase here:
$passphrase = 'pushchat';
// Put your alert message here:
$message = 'My first push notification!';
////////////////////////////////////////////////////////////////////////////////
$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'ck.pem');
stream_context_set_option($ctx, 'ssl', 'passphrase', $passphrase);
// Open a connection to the APNS server
$fp = stream_socket_client(
'ssl://gateway.sandbox.push.apple.com:2195', $err,
$errstr, 60, STREAM_CLIENT_CONNECT|STREAM_CLIENT_PERSISTENT, $ctx);
if (!$fp)
exit("Failed to connect: $err $errstr" . PHP_EOL);
echo 'Connected to APNS' . PHP_EOL;
// Create the payload body
$body['aps'] = array(
'alert' => $message,
'sound' => 'default'
);
// 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;
// Send it to the server
$result = fwrite($fp, $msg, strlen($msg));
if (!$result)
echo 'Message not delivered' . PHP_EOL;
else
echo '
' 。 PHP_EOL;
// Close the connection to the server
fclose($fp);
我已将 .p12 文件转换为 PEM 文件并将其命名为 ck.pem 并将其托管在与 php 文件所在的相同位置。当我执行 PHP 文件时,将打印以下内容。有什么我想念的吗?我对证书部分存疑
Connected to APNS
Message successfully delivered
我遇到了完全相同的问题,使用完全相同的示例代码 - 对 android 非常有效,但对 IOS 失败,没有返回错误。
为了解决我的问题,我必须针对应用程序再次创建 SSL 证书,然后 运行
openssl x509 -in aps_development.cer -inform der -out aps_development.pem
openssl pkcs12 -nocerts -out aps_developmentKey.pem -in ios_development.p12
cat aps_development.pem aps_developmentKey.pem > ck.pem
最终针对以下对象进行了测试:
openssl s_client -connect gateway.sandbox.push.apple.com:2195 -cert aps_development.pem -key aps_developmentKey.pem -CAfile entrust_2048_ca.cer
在此之后,一切都完美无缺,那是在 9 月 29 日 - 它现在停止工作,所以我认为它又是证书,但至少它可以帮助您解决问题。
我实际上用设备令牌替换了设备的 UDID,它非常有效。您不能再使用 UDID。
实际上我是 APNS 的新手,我一直在使用在线论坛和博客的一些帮助。我正在使用 PHP 来实现服务器端。以下是我的PHP代码
<?php
// Put your device token here (without spaces):
$deviceToken = '0f744707bebcf74f9b7c25d48e3358945f6aa01da5ddb387462c7eaf61bbad78';
// Put your private key's passphrase here:
$passphrase = 'pushchat';
// Put your alert message here:
$message = 'My first push notification!';
////////////////////////////////////////////////////////////////////////////////
$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'ck.pem');
stream_context_set_option($ctx, 'ssl', 'passphrase', $passphrase);
// Open a connection to the APNS server
$fp = stream_socket_client(
'ssl://gateway.sandbox.push.apple.com:2195', $err,
$errstr, 60, STREAM_CLIENT_CONNECT|STREAM_CLIENT_PERSISTENT, $ctx);
if (!$fp)
exit("Failed to connect: $err $errstr" . PHP_EOL);
echo 'Connected to APNS' . PHP_EOL;
// Create the payload body
$body['aps'] = array(
'alert' => $message,
'sound' => 'default'
);
// 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;
// Send it to the server
$result = fwrite($fp, $msg, strlen($msg));
if (!$result)
echo 'Message not delivered' . PHP_EOL;
else
echo '
' 。 PHP_EOL;
// Close the connection to the server
fclose($fp);
我已将 .p12 文件转换为 PEM 文件并将其命名为 ck.pem 并将其托管在与 php 文件所在的相同位置。当我执行 PHP 文件时,将打印以下内容。有什么我想念的吗?我对证书部分存疑
Connected to APNS
Message successfully delivered
我遇到了完全相同的问题,使用完全相同的示例代码 - 对 android 非常有效,但对 IOS 失败,没有返回错误。
为了解决我的问题,我必须针对应用程序再次创建 SSL 证书,然后 运行
openssl x509 -in aps_development.cer -inform der -out aps_development.pem
openssl pkcs12 -nocerts -out aps_developmentKey.pem -in ios_development.p12
cat aps_development.pem aps_developmentKey.pem > ck.pem
最终针对以下对象进行了测试: openssl s_client -connect gateway.sandbox.push.apple.com:2195 -cert aps_development.pem -key aps_developmentKey.pem -CAfile entrust_2048_ca.cer
在此之后,一切都完美无缺,那是在 9 月 29 日 - 它现在停止工作,所以我认为它又是证书,但至少它可以帮助您解决问题。
我实际上用设备令牌替换了设备的 UDID,它非常有效。您不能再使用 UDID。