从php发送pushwoosh发送推送通知

时间:2014-04-14 09:29:57

标签: php iphone push-notification oauth-2.0 pushwoosh

我正试图通过像这样的推送发送推送通知:

是否有人帮助我如何通过此代码在设备上发送推送通知

function pwCall(  'createMessage',数组(

        'application' => PW_APPLICATION,          

        'auth' => PW_AUTH,

        "devices" => PW_DEVICETOKEN,

        'notifications' =>  array(

                    'send_date' =>'now', //gmdate('d-m-Y H:i', strtotime('2014-04-07 20:35')),

                    'content' => 'my custom notification testing ',

    'link' => 'http://pushwoosh.com/',

                    'content' => array("en" => "English","ru" =>"Русский","de"=>"Deutsch")

                    ),

                  'page_id' => 16863,

                  'link' => 'http://google.com',

                 'data' => array( 'custom' => 'json data' ),   
            )
    );

我收到错误,例如

数组([status_code] => 210 [status_message] =>无法解析日期[回复] =>)

4 个答案:

答案 0 :(得分:3)

  1. 通知应为JSON表示法中的对象数组。在PHP中,它将是数组数组。这是因为您可以在一个请求中创建多个通知。 通知字段的最终JSON:

    “notifications”:[{...通知属性...},{...第二通知属性...},...]

  2. 请求中只有3个根参数:应用程序(或 applications_group ),身份验证通知 。其他参数是通知参数,而不是请求。
  3. 最后你的PHP调用应该如下:

    pwCall("createMessage", array(
      "auth" => PW_AUTH,
      "application" => PW_APPLICATION,
      "notifications" => array(
        array(
          "send_date" => "now",
          "content" => array("en" => "English", "ru" =>"Русский", "de"=>"Deutsch"),
          "link" => "http://pushwoosh.com/",
          "page_id" => 16863,
          "devices" => array( PW_DEVICETOKEN ),
          "data" => array( "custom" => "json data" )
        )
      )
    ));
    

    send_date 内容之外的所有通知字段都是可选字段,可以省略

答案 1 :(得分:0)

从外观上看,您的日期格式不正确。你传递的是一个由“now”组成的普通字符串。你想要做的是以下几点:

function pwCall("createMessage", array(
    "application"   => PW_APPLICATION,          
    "auth"          => PW_AUTH,
    "devices"       => PW_DEVICETOKEN,
    "notifications" => array(
        "send_date" => gmdate("Y-m-d H:i"),
        "content"   => "My custom notification",
        "link"      => "http://pushwoosh.com/",
        "content"   => array("en" => "English", "ru" =>"Русский", "de"=>"Deutsch")
    ),
    "page_i" => 16863,
    "link"   => "http://google.com",
        "data" => array("custom" => "json data"),   
    )
);

答案 2 :(得分:0)

我们开发了一个API来轻松调用Pushwoosh Web服务。

此API应该是高质量的,并且经过全面测试(代码覆盖率非常高)。

https://github.com/gomoob/php-pushwoosh

答案 3 :(得分:0)

$push_auth = 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX';
$push_app_id = 'XXXXX-XXXXX';
$push_debug = false;
$title = ''; // pushwoosh title
$banner = ''; // pushwoosh banner
$send_date = 'now'; // pushwoosh date
$android_header = '';    // pushwoosh android header 
$android_custom_icon = '' pushwoosh notification icon;
sendpush('createMessage', array(
                    'application' => $push_app_id,
                    'auth' => $push_auth,
                    'notifications' => array(
                        array(
                            'send_date' => $send_date,
                            'content' => $title,
                            'android_header'=>$android_header,
                            'android_custom_icon' =>$android_custom_icon,
                            'android_badges' => 2,
                            'android_vibration' => 1,                
                            'android_priority' => 1,
                            'data' => array('custom' => 'json data'),
                        ),
                    )
        ));

function sendpush($method, $data) {
            $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, false);
            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') && self::$push_de) {
                print "[PW] request: $request\n";
                print "[PW] response: $response\n";
                print "[PW] info: " . print_r($info, true);
            }

            return $info;
    }
}