gpt4 book ai didi

iphone - 为什么我无法连接到苹果推送通知服务?

转载 作者:太空宇宙 更新时间:2023-11-03 13:19:17 25 4
gpt4 key购买 nike

我在开发Apple Push Notification Service时遇到了一个大问题。

我编写了一个 PHP 脚本 (apns.php),它将使用 PEM(ck.pem) 文件作为安全证书,并在我向其发送 HTTP 请求时建立到 APNS 的 SSL 连接,但是当它尝试连接服务端口时总是失败 ( ssl://gateway.sandbox.push.apple.com:2195)。 PHP 脚本部署在 GoDaddy 的 Linux 主机上(它应该支持 SSL)。

我已经注册成为iOS开发者计划的成员(member),并且我已经为我的应用程序注册了苹果推送通知服务。我已经从 Keychain Access 生成了一个证书文件和一个 key 文件(cert.p12 和 key.p12),并将它们翻译成 PEM 文件(cert.pem 和 key.pem) 并将它们加入 one(ck.pem) 并将其放在 PHP script 的同一目录中。

我想知道我做错了什么!请引用您可能需要的文件附件?

非常感谢!

HTTP 请求如下所示。

http://www.insidertracker.net/apns/apns.php?message=&badge=2&sound=received5.caf

我的请求的响应信息如下:

Warning: stream_socket_client() [function.stream-socket-client]: unable to connect to ssl://gateway.sandbox.push.apple.com:2195 (Connection refused) in /home/content/40/6967940/html/apns/apns.php on line 25 Failed to connect 111 Connection refused

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);
?>

最佳答案

据我了解,GoDaddy 禁止在异国情调的端口(除 80 以外的任何其他端口)上进行传出连接。尝试推出托管在 GoDaddy 上的自己的推送服务可能不走运。我很幸运地用 bluehost 做了你正在尝试的事情。

关于用 PHP 开发推送服务的一般建议,这两篇文章非常宝贵:One Two

关于iphone - 为什么我无法连接到苹果推送通知服务?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4278437/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com