其实我是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 '
&#39; 。 PHP_EOL;
// Close the connection to the server
fclose($fp);
我已将.p12文件转换为PEM文件,并将其命名为ck.pem,并将其托管在与php文件所在的位置相同的位置。当我执行PHP文件时,会打印以下内容。有什么我想念的东西。我对证书部分表示怀疑。
Connected to APNS
Message successfully delivered
答案 0 :(得分:1)
我有完全相同的问题,使用完全相同的示例代码 - 适用于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日 - 它现在停止了工作,所以我认为它再次成为Certs但至少它可以帮助你解决问题。
答案 1 :(得分:0)
我实际上用设备令牌替换了设备的UDID,它就像一个魅力。你不能再使用UDID了。