gpt4 book ai didi

php - 从 PHP 发送 iOS 推送通知

转载 作者:可可西里 更新时间:2023-11-01 03:52:07 29 4
gpt4 key购买 nike

我正在开发一个使用 iOS 推送通知的 iOS 应用程序。我想从我服务器上的 php 脚本发送通知。我的应用程序中的代码非常适合注册远程通知并接收它们。我使用这个 php 脚本发送通知,它也运行良好:

<?php

// My device token here (without spaces):
$deviceToken = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';

// My private key's passphrase here:
$passphrase = 'myPrivateKey';

// My alert message here:
$message = 'New Push Notification!';

//badge
$badge = 1;

$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,
'badge' => $badge,
'sound' => 'newMessage.wav'
);

// 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 'Error, notification not sent' . PHP_EOL;
else
echo 'notification sent!' . PHP_EOL;

// Close the connection to the server
fclose($fp);

我的问题是,如果我在我的 iMac 上通过终端运行这个脚本,一切正常并发送通知,但如果我将它上传到我的服务器上,它就不起作用。我的证书有效并且位于脚本的同一文件夹中。当我尝试在服务器上运行脚本时,我添加了这一行以包含证书文件并使用变量 $cerificate:

$certificate = file_get_contents('ck.pem');

这是php服务器端的错误:

Warning: stream_socket_client() [function.stream-socket-client]: unable to connect to ssl://gateway.sandbox.push.apple.com:2195 (Connection timed out) in script.php on line 29
Failed to connect: 110 Connection timed out

为什么会这样?我是否必须在我的服务器上添加一些东西才能启用平底锅连接?

-----更新问题-----

我的第一个问题是我没有权限在端口 2195 上发送连接并在端口 2196 上接收响应。现在,我的服务器管理员启用了这些连接,但我遇到了不同的错误:

Warning: stream_socket_client() [function.stream-socket-client]: SSL operation failed with code 1. OpenSSL Error messages: error:14094410:SSL routines:SSL3_READ_BYTES:sslv3 alert handshake failure in script.php on line 28

Warning: stream_socket_client() [function.stream-socket-client]: Failed to enable crypto in script.php on line 28

Warning: stream_socket_client() [function.stream-socket-client]: unable to connect to ssl://gateway.sandbox.push.apple.com:2195 (Unknown error) in script.php on line 28

连接失败:0

最佳答案

当您使用共享主机时会发生这种情况,而主机提供商未授予您在端口 2195 和 2196 上使用出站连接的权限。为此,您应该使用 VPS 或其他一些提供商,例如 urbanAirship 和 parse.com。或者您甚至可以运行自己的本地服务器...为此

关于php - 从 PHP 发送 iOS 推送通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21237445/

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