如何正确地发送推送通知(how to properly send push notification

2019-10-18 06:32发布

这不是我的第一个应用程序发送推送通知,但它是我的第一个应用程序,我在同一时间发送给我的所有用户发送通知。

什么IM经历是,并不是所有的用户会收到通知,只是其中的一部分,即使他们有(启用了我的应用程序即通知)正确的设置,还因为它被发送到他们中的一些代码是正确的,所以我猜测是代码“错过”的一些处决,因为与APNS的连接如为asyncronous这样莫名其妙地(你告诉我,如果我错了),它弄乱发送通知的队列。

下面的代码:

function sendNotification(){

$sql = "SELECT * FROM users WHERE phone = 'iPhone' AND pushID != ''";
try {
    $db = getConnection();
    $stmt = $db->prepare($sql);  
    $stmt->execute();
    $users = $stmt->fetchAll(PDO::FETCH_OBJ);

    $request = Slim::getInstance()->request();
    $content = json_decode($request->getBody());
    $message = $content->message;

    foreach($users as $user){

            // Put your device token here (without spaces):
            $deviceToken = $user->pushID;


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

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

            $ctx = stream_context_create();
            stream_context_set_option($ctx, 'ssl', 'local_cert', 'xxxxx.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' => $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;

            // Send it to the server
            $result = fwrite($fp, $msg, strlen($msg));

            if (!$result)
                echo 'Message not delivered' . PHP_EOL;
            else
                echo 'Message successfully delivered' . PHP_EOL;

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

    }
    $db = null;
} catch(PDOException $e) {
    echo '{"error":{"text":'. $e->getMessage() .'}}'; 
}
}

正如你可以看到我去找我的所有用户使用iPhone,我给他们的通知。 我的手机是在该列表中的最后一个用户,我没有得到它,我知道是首当其冲的一个其他用户,她得到了它。 它或者错过一些用户的阵列中,或者它只是做上半年,没有显示任何错误。

即时通讯使用斯利姆这一点。

希望你能帮助我,谢谢!

Answer 1:

这可能是一些设备的令牌要发送到是无效的。 即使是一个无效的设备可以解释你正在经历。 当您发送一个通知,一个无效的设备令牌,苹果将返回错误响应和关闭套接字。

这有可能是你的代码检测关闭套接字你已经无效相继发送多少条通知的时间(它甚至有可能在你完成检测关闭套接字之前发送的所有通知),这导致所有后发来的通知无效一个被丢弃。 您创建一个新的socket后,这种通知必须重新发送给苹果公司。

建议你阅读Push Notification Throughput and Error Checking节本文件的更多细节。

请确保您的数据库不包含生产设备令牌和沙箱设备令牌的组合,因为生产令牌是在沙箱环境中,反之亦然无效。



文章来源: how to properly send push notifications