在开发Apple推送通知服务时,我遇到了一个大问题。
我编写了一个PHP脚本(apns.php),它将使用PEM( ck.pem )文件作为安全证书,并在向其发送HTTP请求时建立与APNS的SSL连接,但它在尝试连接服务端口( ssl://gateway.sandbox.push.apple.com:2195)
时总是失败。 PHP脚本部署在GoDaddy的Linux主机上(它应该支持SSL)。
我已经注册成为iOS开发者计划的成员,我已经为我的应用程序注册了苹果推送通知服务。我已经从Keychain Access生成了一个证书文件和一个key file (cert.p12 and key.p12)
,并将它们转换为PEM files(cert.pem and key.pem)
并将它们合并为一个(ck.pem)并将其放在PHP脚本的同一目录中。
我想知道我做错了什么!你会参考你可能需要的文件的附件吗?
非常感谢!
HTTP请求如下所示。
http://www.insidertracker.net/apns/apns.php?message=&badge=2&sound=received5.caf
我的请求的响应消息如下:
警告:stream_socket_client()[function.stream-socket-client]: 无法连接到ssl://gateway.sandbox.push.apple.com:2195 (连接被拒绝)在/home/content/40/6967940/html/apns/apns.php上 第25行无法连接111拒绝连接
PHP脚本:
<?php
$deviceToken = '0535dda1 6fd04e87 ed0a8194 d418a6c1 99eec462 8a871891 d062018d c6af4f99';
$pass = 'Php1234'; // Passphrase for the private key (ck.pem file)
// Get the parameters from http get or from command line
$message = $_GET['message'] or $message = $argv[1] or $message = 'You have an important message from InsiderTracker';
$badge = (int)$_GET['badge'] or $badge = (int)$argv[2];
$sound = $_GET['sound'] or $sound = $argv[3];
// Construct the notification payload
$body = array();
$body['aps'] = array('alert' => $message);
if ($badge)
$body['aps']['badge'] = $badge;
if ($sound)
$body['aps']['sound'] = $sound;
/* End of Configurable Items */
$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'ck.pem');
// assume the private key passphase was removed.
stream_context_set_option($ctx, 'ssl', 'passphrase', $pass);
// connect to apns
$fp = stream_socket_client('ssl://gateway.sandbox.push.apple.com:2195', $err, $errstr, 60, STREAM_CLIENT_CONNECT, $ctx);
// $fp = fsockopen('ssl://gateway.sandbox.push.apple.com:2195', 2195, $err, $errstr, 30);
if (!$fp) {
print "Failed to connect $err $errstr\n";
return;
}
else {
print "Connection OK\n<br/>";
}
// send message
$payload = json_encode($body);
$msg = chr(0) . pack("n",32) . pack('H*', str_replace(' ', '', $deviceToken)) . pack ("n",strlen($payload)) . $payload;
print "Sending message :" . $payload . "\n";
fwrite($fp, $msg);
fclose($fp);
?>
答案 0 :(得分:2)
据我了解,GoDaddy禁止在异国风情的港口(除了80以外的任何其他东西)进行传出连接。你可能在试图推出自己在GoDaddy上托管的推送服务时运气不佳。我很幸运,你正在尝试使用bluehost。
答案 1 :(得分:0)
我也遇到了这个错误。请记住以下几点:
ssl://gateway.sandbox.push.apple.com
,请检查PHP版本支持的ssl;如果使用tls://gateway.sandbox.push.apple.com
,请检查tls 您还可以使用api get reference发送推送开发服务器:api.development.push.apple.com:443
生产服务器:api.push.apple.com:443
https://developer.apple.com/library/archive/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/CommunicatingwithAPNs.html#//apple_ref/doc/uid/TP40008194-CH11-SW1