我正在关注Ray Wenderlich的IOS通知教程: http://www.raywenderlich.com/32960/apple-push-notification-services-in-ios-6-tutorial-part-1
一切顺利,最初的测试确定我可以连接到APNS并且我的证书被认可都很顺利。我在尝试运行他提供的php脚本时遇到错误,但我已将所请求的详细信息和ck.pem添加到该文件夹中。 完整的错误是: 解析错误:第10行/Users/carsoncarbery/Desktop/SimplePush/simplepush.php中的解析错误
这是我的PHP脚本中的代码:
<?php
// Put your device token here (without spaces):
$deviceToken = '521fbe4fbee30cb68ec7303a12a9d1ea56d89e6c18557479311f9417a2208415';
// Put your private key's passphrase here:
$passphrase = 'pushchat!’;
// Put your alert message here:
$message = 'My first push woo hoo :-)’;
////////////////////////////////////////////////////////////////////////////////
$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'ck.pem');
stream_context_set_option($ctx, 'ssl', 'passphrase', $passphrase);
stream_context_set_option($ctx, 'ssl', 'cafile', 'entrust_2048_ca.cer');
// 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 'Message successfully delivered' . PHP_EOL;
// Close the connection to the server
fclose($fp);
我应该补充说我是新手(因此试图从教程中学习)并且还不了解PHP,我已经在网上检查过这个解决方案但是还没有找到任何参考资料这可以帮助。 非常感谢您的帮助
答案 0 :(得分:0)
我得到了与您上面提到的相同的错误。我通过执行以下步骤来修复它,
下载并解压缩SimplePush.zip
从SimplePush文件夹中删除ck.pem
将您的ck.pem复制并粘贴到SimplePush文件夹
在simplepush.php
按照教程
答案 1 :(得分:0)
在看了一点之后,我看到了那个&#39; pushchat!',没有正确的结束评论&#39;。由于这是从课程中复制而来的,我不确定它是如何进入的。感谢您的评论和帮助。