Apple Push Notification Service connection, throug

2019-07-28 17:24发布

I'm trying to connect APNS, but i need to pass through a proxy, here the connection test code:

if (!extension_loaded('openssl')) {
    exit("need openssl");
}

$http = array();
$http['http']['proxy'] = 'tcp://proxy.net:8080';
$http['http']['request_fulluri'] = true;

$ssl = array();
$ssl['ssl']['local_cert'] = 'ck.pem';
$ssl['ssl']['passphrase'] = 'passphrase';

$opts = array_merge($http,$ssl);

$context = stream_context_create($opts);

$fp = stream_socket_client('ssl://gateway.sandbox.push.apple.com:2195', $err, $errstr, 60, STREAM_CLIENT_CONNECT, $context);

if (!$fp)
    exit("Failed to connect: $err $errstr" . PHP_EOL);

echo 'Connected to APNS' . PHP_EOL;

The problem is that I have always a timeout error, like if i make a direct connection to apple gateway, like if options in stream_context_creat were ognored.

OpenSSL and Socket support are enabled, and port 2195 is open.

Any ideas?

Edit 1:

Trying connect to proxy only it works

$fp = stream_socket_client('tcp://proxy-dmz.pgol.net:8080', $err, $errstr, 60, STREAM_CLIENT_CONNECT);

if (!$fp)
    exit("Failed to connect: $err $errstr" . PHP_EOL);

echo 'Connected!' . PHP_EOL;

Edit 2:

And a script like this (found in some forum) seems to work... i'm stuck

$ip = "tcp://proxy.net"; // proxy IP
$port = "8080"; // proxy port

$url = "http://search.yahoo.com/search?p=test";

$request = "GET $url HTTP/1.0\r\nHost:www.yahoo.com:80\r\n\r\n";

$fp = fsockopen($ip,$port); // connect to proxy

fputs($fp, $request);

$data="";
while (!feof($fp)) $data.=fgets($fp,64000);

fclose($fp);

print $data;

0条回答
登录 后发表回答