Результат Push-уведомления 87 - PullRequest
0 голосов
/ 16 ноября 2011

Я отправляю push-уведомление в php. Я получил "87" в переменной результата.что это значит.

    <?php
    $deviceToken = "a448b8946a5de3801dc6a11862a5a0bf11f1adc16xxxxxxxxxxxx"; // masked for security reason
    // Passphrase for the private key
    $pass = 'molik';

    // Get the parameters from http get or from command line
    $message = $_GET['message'] or $message = $argv[1] or $message = 'Test Message';
    //$badge = (int)$_GET['badge'] or $badge = (int)$argv[2] or $badge  = 1;
    $sound = $_GET['sound'] or $sound = $argv[3] or $sound  = 'default';

    // Construct the notification payload
    $body = array();
    $body['aps'] = array('alert' => $message);
    if ($badge)
    $body['aps']['badge'] = $badge;
    if ($sound)
    $body['aps']['sound'] = $sound;


    /* End of Configurable Items */
    $ctx = stream_context_create();
    stream_context_set_option($ctx, 'ssl', 'local_cert', 'ck.pem');
    // assume the private key passphase was removed.
    stream_context_set_option($ctx, 'ssl', 'passphrase', $pass);

    // for production change the server to ssl://gateway.push.apple.com:219
    $fp = stream_socket_client('ssl://gateway.sandbox.push.apple.com:2195', $err, $errstr, 60, STREAM_CLIENT_CONNECT, $ctx);

    if (!$fp) {
        print "Failed to connect $err $errstr\n";
        return;
    }
    else {
        print "Connection OK\n";
    }

    $payload = json_encode($body);
    $msg = chr(0) . pack("n",32) . pack('H*', $deviceToken) . pack("n",strlen($payload)) . $payload;
    print "sending message :" . $payload . "\n";

     $result=fwrite($fp, $msg);

     echo ">>" .$result ."<<" . PHP_EOL;
     fclose($fp);

OutPut

 Connection OK
 sending message :{"aps":{"alert":"Test Message","sound":"default"}}
 >>87<<

1 Ответ

1 голос
/ 17 ноября 2011

В PHP fwrite возвращает количество написанных символов, в данном случае количество байтов, записанных в ваш сокет.

...