使用Pushwoosh和Php向特定设备发送通知



有没有人在使用Pushwoosh远程api向特定设备发送自定义通知方面取得了任何成功?我已经查看了他们的文档来设置它,但通知不断发送到所有设备。我在这里做错了什么?提前谢谢。

<?php

define('PW_AUTH', 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX');
define('PW_APPLICATION', 'XXXXXX-XXXXXX');
define('PW_DEBUG', true);
function pwCall($method, $data = array()) {

    $url = 'https://cp.pushwoosh.com/json/1.3/' . $method;
    $request = json_encode(['request' => $data]);
    $ch = curl_init($url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true);
    curl_setopt($ch, CURLOPT_ENCODING, 'gzip, deflate');
    curl_setopt($ch, CURLOPT_HEADER, true);
    curl_setopt($ch, CURLOPT_POST, true);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $request);
    $response = curl_exec($ch);
    $info = curl_getinfo($ch);
    curl_close($ch);
    if (defined('PW_DEBUG') && PW_DEBUG) {
        print "[PW] request: $requestn";
        print "[PW] response: $responsen";
        print "[PW] info: " . print_r($info, true);
    }
}
pwCall('createMessage', array(
                  'application' => PW_APPLICATION,
                  'auth' => PW_AUTH,
                  'notifications' => array(
                          array(
                              'send_date' => 'now',
                              'content' => 'Send this content to user',
                          )

                  ),
                  'devices' => array('2lksdflkje96a4389f796173fakeae938device95ajkdh8709843') //Optional. Not more than 1000 tokens in an array. If set, message will only be delivered to the devices in the list. Ignored if the applications group is used

          )
        );
?>

您必须在通知数组中指定设备列表。请参阅下面的正确请求(此处还提供 Pushwoosh API 文档 https://www.pushwoosh.com/programming-push-notification/pushwoosh-push-notification-remote-api/#PushserviceAPI-Method-messages-create)

   <?php
    define('PW_AUTH', 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX');
    define('PW_APPLICATION', 'XXXXXX-XXXXXX');
    define('PW_DEBUG', true);
    function pwCall($method, $data = array()) {
        $url = 'https://cp.pushwoosh.com/json/1.3/' . $method;
        $request = json_encode(['request' => $data]);
        $ch = curl_init($url);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true);
        curl_setopt($ch, CURLOPT_ENCODING, 'gzip, deflate');
        curl_setopt($ch, CURLOPT_HEADER, true);
        curl_setopt($ch, CURLOPT_POST, true);
        curl_setopt($ch, CURLOPT_POSTFIELDS, $request);
        $response = curl_exec($ch);
        $info = curl_getinfo($ch);
        curl_close($ch);
        if (defined('PW_DEBUG') && PW_DEBUG) {
            print "[PW] request: $requestn";
            print "[PW] response: $responsen";
            print "[PW] info: " . print_r($info, true);
        }
    }
    pwCall('createMessage', array(
                      'application' => PW_APPLICATION,
                      'auth' => PW_AUTH,
                      'notifications' => array(
                              array(
                                  'send_date' => 'now',
                                  'content' => 'Send this content to user',
                                  'devices' => array('2lksdflkje96a4389f796173fakeae938device95ajkdh8709843') //Optional. Not more than 1000 tokens in an array. If set, message will only be delivered to the devices in the list. Ignored if the applications group is used
                              )
                      ),
              )
            );
    ?>

相关内容

  • 没有找到相关文章

最新更新