1

我正在使用这个 php 脚本,但它产生的输出消息已成功传递但未发送通知。我已经检查了设备 ID 和证书,它们是完美的,并且可以与另一个脚本一起正常工作。

<?php
    // Put your device token here (without spaces):
    $deviceToken = 'fbf04bf4ace2f1e823016082da3a798cf3ab666ae99a395b65e364eb4c6d6d4a';

    // Put your private key's passphrase here:
    $passphrase = '123';

    // Put your alert message here:
    $message = 'A push notification has been sent!';

    ////////////////////////////////////////////////////////////////////////////////

    $ctx = stream_context_create();
    stream_context_set_option($ctx, 'ssl', 'local_cert', 'key.pem');
    stream_context_set_option($ctx, 'ssl', 'passphrase', $passphrase);

    // Open a connection to the APNS server
    $fp = stream_socket_client('ssl://gateway.push.apple.com:2195', $err, $errstr, 60, STREAM_CLIENT_CONNECT | STREAM_CLIENT_PERSISTENT, $ctx);

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

    echo 'Connected to APNS' . PHP_EOL;

    // Create the payload body
    $body['aps'] = array('alert' => array('body' => $message, 'action-loc-key' => 'Look', ), 'badge' => 2, 'sound' => 'oven.caf', );

    // Encode the payload as JSON
    $payload = json_encode($body);

    // Build the binary notification
    $msg = chr(0) . pack('n', 32) . pack('H*', $deviceToken) . pack('n', strlen($payload)) . $payload;

    // Send it to the server
    $result = fwrite($fp, $msg, strlen($msg));
    echo "<pre>Result : ";
    print_r($result);
    if (!$result)
        echo 'Message not delivered' . PHP_EOL;
    else
        echo 'Message successfully delivered' . PHP_EOL;

    // Close the connection to the server
    fclose($fp);
    ?>

任何人都可以帮助我摆脱这种情况。?提前致谢

4

2 回答 2

0

我第一次启动 iOS 推送通知时遇到了类似的问题

您可能正在进行开发推送而不是生产推送 将服务器更改为 ssl://gateway.sandbox.push.apple.com:2195 并使用您的开发推送通知密钥进行尝试。

这解决了我的问题

于 2013-07-11T23:30:22.747 回答
0

我认为你必须change port number

您编码: ssl://gateway.push.apple.com:2195. 2195用于沙箱并2196用于实时。

你能不能换一下试试。

希望这项工作。

于 2013-08-09T11:42:48.083 回答