我在Amazon ec2,php 7中使用以下php代码
<?php
function sendApplePushNotificationMessage( $data, $message )
{
global $notification;
$apns_settings = $notification['apns_user'];
$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', $apns_settings['pemFile']);
$fp = stream_socket_client('ssl://gateway.'.(($apns_settings['environment'] == $err, $errstr, 60, STREAM_CLIENT_CONNECT|STREAM_CLIENT_PERSISTENT, $ctx);
if (!$fp)
exit("Failed to connect amarnew: $err $errstr" . PHP_EOL);
echo 'Connected to APNS' . PHP_EOL;
$body['aps'] = array(
'alert' => $message,
'sound' => 'default'
);
$payload = json_encode($body+$extra_values);
$msg = chr(0) . pack('n', 32) . pack('H*', $data['token']) . pack('n', strlen($payload)) . $payload;
$result = fwrite($fp, $msg, strlen($msg));
if (!$result)
echo 'Message not delivered' . PHP_EOL;
else
echo 'Message successfully delivered '.$message. PHP_EOL;
// Close the connection to the server
fclose($fp);
}
当我调用此函数时,我得到了以下成功消息。
Connected to APNS
Message successfully delivered
当我尝试使用相同的pem文件和设备令牌进行在线测试时,它可以正常工作,但 无法在Amazon ec2上运行 。
答案 0 :(得分:2)
您正在使用APN
服务发送推送通知。它将访问端口2195
&amp; 2196
在内部使用TCPSocket
发送推送通知。
您的本地系统可以访问所有端口,然后就没有问题了。
默认情况下, EC2
实例无权访问这些端口。您可以在ec2
实例security groups
中允许/打开这些端口。
还允许端口443
。
答案 1 :(得分:0)
编写自己的函数以导致Apple推送通知的另一种方法是使用Amazon Simple Notification Service(SNS)。
Amazon SNS 可以将通知推送到iOS,Android,百度,Windows移动,Windows桌面和Mac桌面。