我正在研究APNS(Apple推送通知服务)。 我正在按照教程说的那样做:
$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'ck.pem');
stream_context_set_option($ctx, 'ssl', 'passphrase', $passphrase);
$fp = stream_socket_client(
'ssl://gateway.sandbox.push.apple.com:2195', $err,
$errstr, 60, STREAM_CLIENT_CONNECT|STREAM_CLIENT_PERSISTENT, $ctx);
但是在我的服务器上,我必须通过HTTP代理连接到互联网,所以我总是得到这些代码的超时错误。如何使用ssl协议为strem_socket_client设置http代理?
答案 0 :(得分:7)
最好的方法是使用stream_context_create
设置proxy
选项:
$ctx = stream_context_create(array(
'http' => array(
'proxy' => 'tcp://127.0.0.1:8888',
)
)
);
有关完整的http选项,请参阅http://php.net/manual/en/context.http.php。
也许你必须将request_fulluri
设置为true。