http://blog.csdn.net/motian06/article/details/8199247 参考的这篇博客 换上自己的设备号 和 密码短语以后 报这样的错误 我在本地测试的 本地apache开启了openssl
warning: stream_socket_client() [function.stream-socket-client]: unable to set local cert chain file `e:\appserv\www\ceshi/apns-dev.pem'; check that your cafile/capath settings include details of your certificate and its issuer in e:\appserv\www\ceshi\2.php on line 25
warning: stream_socket_client() [function.stream-socket-client]: failed to create an ssl handle in e:\appserv\www\ceshi\2.php on line 25
warning: stream_socket_client() [function.stream-socket-client]: failed to enable crypto in e:\appserv\www\ceshi\2.php on line 25
warning: stream_socket_client() [function.stream-socket-client]: unable to connect to ssl://gateway.sandbox.push.apple.com:2195 (unknown error) in e:\appserv\www\ceshi\2.php on line 25
failed to connect 0
回复讨论(解决方案) 可能是apns-dev.pem的路径不对,建议和推送文件同级,而且,上个月苹果的链接方式改为了tls,不支持ssl的链接
stream_socket_client('tls://gateway.push.apple.com:2195',$err,$errstr, 60, stream_client_connect|stream_client_persistent, $ctx);
的可能性?大。
可能是apns-dev.pem的路径不对,建议和推送文件同级,而且,上个月苹果的链接方式改为了tls,不支持ssl的链接
stream_socket_client('tls://gateway.push.apple.com:2195',$err,$errstr, 60, stream_client_connect|stream_client_persistent, $ctx);
.pem证书文件 和 php推送文件是在同一个目录下的, 请问一下这个需要改成tls吗? stream_context_set_option($ctx, 'ssl', 'local_cert', 'ck.pem'); stream_context_set_option($ctx, 'ssl', 'passphrase', $pass);
这个不用,只是改了链接方式
//手机注册应用返回唯一的devicetoken$devicetoken = 'xxxxxxxxx';//ck.pem通关密码$pass = 'xxx'; //消息内容$message = 'a test message!';//badge我也不知是什么$badge = 4;//sound我也不知是什么(或许是推送消息到手机时的提示音)$sound = 'default';//建设的通知有效载荷(即通知包含的一些信息)$body = array();$body['aps'] = array('alert' => $message);//把数组数据转换为json数据$payload = json_encode($body);echo strlen($payload),\r\n;//下边的写法就是死写法了,一般不需要修改,//唯一要修改的就是:ssl://gateway.sandbox.push.apple.com:2195这个是沙盒测试地址,ssl://gateway.push.apple.com:2195正式发布地址$ctx = stream_context_create();$pem = dirname(__file__) .'/'.'apns-dev.pem';stream_context_set_option($ctx, 'tls', 'local_cert', $pem); stream_context_set_option($ctx, 'tls', 'passphrase', $pass);$fp = stream_socket_client('tls://gateway.push.apple.com:2195',$err,$errstr, 60, stream_client_connect|stream_client_persistent, $ctx);if (!$fp) { print failed to connect $err $errstr\n; return;}else { print connection ok\n
;}// send message$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);
修改成tls以后 还是报错
这个不用,只是改了链接方式
谢谢你的帮忙 我改了以后还是会报错 php文件 和 .pem文件也在同一个目录下
我的代码 //手机注册应用返回唯一的devicetoken$devicetoken = 'xxxxx';//ck.pem通关密码$pass = 'xxx'; //消息内容$message = 'a test message!';//badge我也不知是什么$badge = 4;//sound我也不知是什么(或许是推送消息到手机时的提示音)$sound = 'default';//建设的通知有效载荷(即通知包含的一些信息)$body = array();$body['aps'] = array('alert' => $message);//把数组数据转换为json数据$payload = json_encode($body);echo strlen($payload),\r\n;//下边的写法就是死写法了,一般不需要修改,//唯一要修改的就是:ssl://gateway.sandbox.push.apple.com:2195这个是沙盒测试地址,ssl://gateway.push.apple.com:2195正式发布地址$ctx = stream_context_create();$pem = dirname(__file__) .'/'.'apns-dev.pem';stream_context_set_option($ctx, 'ssl', 'local_cert', $pem); stream_context_set_option($ctx, 'ssl', 'passphrase', $pass);$fp = stream_socket_client('tls://gateway.push.apple.com:2195',$err,$errstr, 60, stream_client_connect|stream_client_persistent, $ctx);if (!$fp) { print failed to connect $err $errstr\n; return;}else { print connection ok\n
;}// send message$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);
报的错误
warning: stream_socket_client() [function.stream-socket-client]: unable to set private key file `d:\clientweb\demo\apns-dev.pem' in d:\clientweb\demo\y.php on line 25
warning: stream_socket_client() [function.stream-socket-client]: failed to create an ssl handle in d:\clientweb\demo\y.php on line 25
warning: stream_socket_client() [function.stream-socket-client]: failed to enable crypto in d:\clientweb\demo\y.php on line 25
warning: stream_socket_client() [function.stream-socket-client]: unable to connect to tls://gateway.push.apple.com:2195 (unknown error) in d:\clientweb\demo\y.php on line 25
failed to connect 0
能再帮我看一下吗?
查看 phpinfo() openssl 也是显示开启的
$pem = dirname(__file__) .'/'.'apns-dev.pem';
改为绝对路径,如d:/wamp/www/push/ck.pem 试试
$pem = dirname(__file__) .'/'.'apns-dev.pem';
改为绝对路径,如d:/wamp/www/push/ck.pem 试试
改成绝对路径以后 还是会报错
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 d:\clientweb\demo\y.php on line 25
warning: stream_socket_client() [function.stream-socket-client]: failed to enable crypto in d:\clientweb\demo\y.php on line 25
warning: stream_socket_client() [function.stream-socket-client]: unable to connect to tls://gateway.push.apple.com:2195 (unknown error) in d:\clientweb\demo\y.php on line 25
failed to connect 0
http://zhidao.baidu.com/link?url=ovktep-jhluby3rxtzurf-qccl4bmy5dwxgdqxhuatmv08zbvnyrqswl4j0jo46e3iyymqdugpw160yq4alduk
自己懒得查 我就帮你查
http://zhidao.baidu.com/link?url=ovktep-jhluby3rxtzurf-qccl4bmy5dwxgdqxhuatmv08zbvnyrqswl4j0jo46e3iyymqdugpw160yq4alduk
自己懒得查 我就帮你查
我查了资料了,木有查着 ,应该不是连不上苹果服务器的原因
用你的代码,改后测试了一下,能发送,改动:ck.pem与文件同级,链接沙盒,自己的token和pass,其它未改
//手机注册应用返回唯一的devicetoken$devicetoken = 'xxx';//隐藏了自己的token//ck.pem通关密码$pass = '123456'; //消息内容$message = 'a test message!';//badge我也不知是什么$badge = 4;//sound我也不知是什么(或许是推送消息到手机时的提示音)$sound = 'default';//建设的通知有效载荷(即通知包含的一些信息)$body = array();$body['aps'] = array('alert' => $message);//把数组数据转换为json数据$payload = json_encode($body);echo strlen($payload),\r\n;//下边的写法就是死写法了,一般不需要修改,//唯一要修改的就是:ssl://gateway.sandbox.push.apple.com:2195这个是沙盒测试地址,ssl://gateway.push.apple.com:2195正式发布地址$ctx = stream_context_create();$pem = dirname(__file__) .'/'.'ck.pem';stream_context_set_option($ctx, 'ssl', 'local_cert', $pem); stream_context_set_option($ctx, 'ssl', 'passphrase', $pass);$fp = stream_socket_client('tls://gateway.sandbox.push.apple.com:2195',$err,$errstr, 60, stream_client_connect|stream_client_persistent, $ctx);if (!$fp) { print failed to connect $err $errstr\n; return;}else { print connection ok\n
;}// send message$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);/*35 connection ok sending message :{aps:{alert:a test message!}} */
提示你握手失败,可能是你的apns-dev.pem不对 jam00 谢谢你的热心帮忙 我再去试试