• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

php - 尝试通过 php 文件执行 Apple 推送通知时出错

[复制链接]
菜鸟教程小白 发表于 2022-12-11 17:15:48 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我正在使用 php 服务器在 IOS 中处理推送通知,并且我生成了应用程序的证书和 key ,我还确保从 ssl://gateway.sandbox.push.apple.com:2196 和2195,但在尝试连接 ssl 时,我总是收到此错误,我也确信来自所有关键文件的许可

Warning: stream_socket_client(): SSL: crypto enabling timeout in /Users/samahahmaed/Desktop/CER/newspush.php on line 24

Warning: stream_socket_client(): Failed to enable crypto in /Users/samahahmaed/Desktop/CER/newspush.php on line 24

Warning: stream_socket_client(): unable to connect to ssl://gateway.sandbox.push.apple.com:2195 (Unknown error) in /Users/samahahmaed/Desktop/CER/newspush.php on line 24
Failed to connect: 0

已编辑:

当我尝试这个命令时

openssl s_client -connect gateway.sandbox.push.apple.com:2195 -cert PushCertificate.pem -key PushKey.pem -CApath /etc/ssl/certs/Entrust_Root_Certification_Authority.pem

我收到此错误

CONNECTED(00000003)
write:errno=54

php 文件:

  <?php

  // Put your device token here (without spaces):
  $deviceToken = 'mydevicetokenhere';

 // Put your private key's passphrase here:
 $passphrase = '1234';

 $message = $argv[1];
 $url = $argv[2];

 if (!$message || !$url)
exit('Example Usage: $php newspush.php \'Breaking News!\'   \'https://raywenderlich.com\'' . "\n");



$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert',  'apple_push_notification_production.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',
   'link_url' => $url,
  );

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

我对这个问题进行了很多搜索,并尝试了所有可能的解决方案,但没有任何结果我现在能做什么?

已编辑:

在 openssl 命令中添加 -debug 后最奇怪的是以下几行: enter image description here



Best Answer-推荐答案


stream_context_set_option($ctx, 'ssl', 'local_cert',  'apple_push_notification_production.pem');

此行看起来您正在使用生产证书连接到沙盒 APNS。尝试使用开发证书。您可以从苹果开发者仪表板中获得相同的信息。

关于php - 尝试通过 php 文件执行 Apple 推送通知时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38945342/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap