我有一个应用程序接收使用Objective-c构建在Xcode上的推送通知。我确实按照Ray Wenderlich的这篇教程this tutorial,通知工作正常,我可以收到即时消息。我有自己的网站,我想用它来发送使用PHP的通知。我确实试图找到关于那个的教程,但我不能。
是否可以使用我的网站发送通知? 我可以使用PHP文件发送通知吗? 我是否需要将SSl证书更改为生产SSL?
她是我目前使用的PHP代码:
<?php
$deviceToken = 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX';
// Put your private key's passphrase here:
$passphrase = 'xxxxxxxxxx';
// Put your alert message here:
$message = 'Hello app';
$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 'Message successfully delivered' . PHP_EOL;
}
// Close the connection to the server
fclose($fp);
?>
我希望我的问题很清楚,希望有人给我一些信息或指导我一个可以帮助我的教程。
由于
答案 0 :(得分:2)
是的,您当然可以使用PHP向iOS设备发送推送通知。但在发送任何通知之前,您将需要:
1)Apple推送证书(APNs证书) - 可以从Apple开发人员中心生成。请注意,证书是每个应用程序,有两种证书,即开发和分发。关注如何生成一个This Link。{/ p>
2)设备的设备令牌 - 这将在您的iOS应用上完成。您在iOS App上的代码可能看起来像这样。
- (void)application:(UIApplication*)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData*)deviceToken
{
self.storedDeviceToken = [[deviceToken description] stringByTrimmingCharactersInSet: [NSCharacterSet characterSetWithCharactersInString:@"<>"]];
self.storedDeviceToken = [self.storedDeviceToken stringByReplacingOccurrencesOfString:@" " withString:@""];
NSLog(@"My token is: %@", self.storedDeviceToken);
}
现在您已拥有推送通知所需的所有工具,您可以从PHP脚本开始。
// Put your device token here (without spaces):
$deviceToken = 'XXXXXXXXXXXXXXX';
$gateway = 'ssl://gateway.push.apple.com:2195';
// Put your private key's passphrase here:
$passphrase = 'YourPassphrase!!';
// Put your alert message here:
$message = 'Yoooo! What\'s up man!';
$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'PathToGeneratedCertificateOnStep1');
stream_context_set_option($ctx, 'ssl', 'passphrase', $passphrase);
// Open a connection to the APNS server
$fp = stream_socket_client(
$gateway, $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);
有关Apple推送通知visit支持的有效负载的更多详细信息。
备注:强>
如果您手动安装iOS应用程序以进行测试,那么该设备 令牌仅对沙盒通知有效。那么,你的
$gateway
会 是'ssl://gateway.sandbox.push.apple.com:2195'
无法在模拟器上收到通知。