简体   繁体   中英

Push notification is not receiving on device

I am using push notification through PHP script. Code seems to be working fine, it does not give me any error. But notification does not receive me on my device.

Here is my code:

$passphrase = '123';
    $ctx = stream_context_create();
    stream_context_set_option($ctx, 'ssl', 'local_cert', 'cert.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);
    // Create the payload body
    $body['aps'] = array(
                 'alert' => $message,
                 'sound' => 'default'
                 );
    // 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;

Can anyone suggest what is wrong in it.

try this php code: but you have to change device token and passpharse as you had set. you can download php script from below link

http://d1xzuxjlafny7l.cloudfront.net/downloads/SimplePush.zip

i have run this php script it's works well..

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM