Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Push notifications (iPhone) give "111 Connection refused"

Tags:

php

ssl

push

iphone

When I try to send Push Notifications I get this error: "Connection refused", but I don't know why... I've uploaded my apns-dev.pem in the same directory as well in the root-directory but that won't work either.

<?php
$payload['aps'] = array('alert' => 'This is the alert text', 'badge' => 1, 'sound' => 'default');
$payload = json_encode($payload);
$apnsHost = 'gateway.sandbox.push.apple.com';
$apnsPort = 2195;
$apnsCert = 'apns-dev.pem';
$apnsPass = 'secret';

$streamContext = stream_context_create();
stream_context_set_option($streamContext, 'ssl', 'local_cert', $apnsCert);
stream_context_set_option($streamContext, 'ssl', 'passphrase', $apnsPass);

$apns = stream_socket_client('ssl://' . $apnsHost . ':' . $apnsPort, $error, $errorString, 60, STREAM_CLIENT_CONNECT, $streamContext);

if (!$apns) {
    echo "Error: $errorString ($error)";
}

// Do this for each
$deviceToken = '00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000';
$apnsMessage = chr(0) . chr(0) . chr(32) . pack('H*', str_replace(' ', '', $deviceToken)) . chr(0) . chr(strlen($payload)) . $payload;
fwrite($apns, $apnsMessage);
// End do

socket_close($apns);
fclose($apns);
?>

Does anyone know what I'm doing wrong? When I remove the passphrase and don't send it it doesn't work either...

like image 797
cutsoy Avatar asked Sep 18 '09 14:09

cutsoy


2 Answers

Make sure the outgoing port 2195 is open.This would be in your firewall config.

like image 96
mshau Avatar answered Sep 19 '22 11:09

mshau


You don't want a passphrase unless your .pem file requires one. The connection requires peer verification (option verify_peer) turned on. Also, make sure $apnsCert is the valid path to the certificate, you can use an absolute path as a sanity check.

Lastly, this shouldn't effect your ability to connect, but your device token needs to be valid.

like image 39
Ben Lachman Avatar answered Sep 18 '22 11:09

Ben Lachman