尝试使用APN将通知推送到iPhone时,我遇到了一些问题。我使用的是我在互联网上一遍又一遍地看到的PHP代码,所以我认为问题不在于此:
<?php
// Put your device token here (without spaces):
$deviceToken = 'mytoken'; // Of course this is my correct token here
// Put your private key's passphrase here:
$passphrase = 'mypassphrase'; // Same here
$message = $argv[1];
$url = $argv[2];
if (!$message || !$url)
exit('Example Usage: $php newspush.php \'Breaking News!\' \'https://raywenderlich.com\'' . "\n");
////////////////////////////////////////////////////////////////////////////////
$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', __DIR__.'/cert.pem');
stream_context_set_option($ctx, 'ssl', 'passphrase', $passphrase);
// Open a connection to the APNS server
$fp = stream_socket_client(
'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',
'link_url' => $url,
);
// 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;
stream_set_blocking($fp, 0);
// Send it to the server
$result = fwrite($fp, $msg, strlen($msg));
if (!$result)
echo 'Message not delivered' . PHP_EOL;
else {
echo 'Message successfully delivered' . PHP_EOL;
}
// Close the connection to the server
fclose($fp);
我输出“Message successfully deliver”,因此已成功建立连接,发送消息的idem。但是,设备没有收到任何内容。
我使用反馈功能试图知道什么是错的,但结果是空的(数组实际上是空的):
<?php
function send_feedback_request() {
//connect to the APNS feedback servers
//make sure you're using the right dev/production server & cert combo!
$stream_context = stream_context_create();
stream_context_set_option($stream_context, 'ssl', 'local_cert', __DIR__.'/cert3.pem');
stream_context_set_option($stream_context, 'ssl', 'passphrase', 'meteor0405');
$apns = stream_socket_client('ssl://feedback.sandbox.push.apple.com:2196', $errcode, $errstr, 60, STREAM_CLIENT_CONNECT, $stream_context);
if(!$apns) {
echo "ERROR $errcode: $errstr\n";
return;
}
$feedback_tokens = array();
//and read the data on the connection:
while(!feof($apns)) {
$data = fread($apns, 38);
if(strlen($data)) {
$feedback_tokens[] = unpack("N1timestamp/n1length/H*devtoken", $data);
}
}
fclose($apns);
return $feedback_tokens;
}
var_dump(send_feedback_request());
您是否知道我可以做些什么来弄清楚什么是错的?它可以归功于证书吗?已从Apple网站生成.cer文件,并将其导入Keychain Access以生成.p12文件。然后,由于openssl命令,我将其转换为.pem格式,这是我在下面的文件中使用的。
谢谢!
答案 0 :(得分:0)
如果您收到成功的消息,则表示您的PHP代码正确,但pem文件中缺少某些内容。
请在此处查看pem文件创建步骤https://www.digicert.com/ssl-support/pem-ssl-creation.htm并再次尝试。
答案 1 :(得分:0)
问题确实来自我的PEM文件。对于任何有同样问题的人来说,这就是我所做的。
从.p12格式的iPhone Developper Connection Portal下载证书和私钥后,我不得不将它们转换为.pem格式。之后,我不得不合并这两个文件(首先放置证书的内容,然后是私钥)。此合并必须放在一个新的.pem文件中,这是在PHP脚本中使用的文件。
以下是我遵循的完整教程:https://blog.serverdensity.com/how-to-build-an-apple-push-notification-provider-server-tutorial/
此外,PHP代码并不完全相同。我在第一篇文章中使用的那个不正确,而是使用教程的一个。