1

尝试在用户当地时间发送推送,而不是打扰他们。

需要在用户本地时间发送推送通知。

通知不经常发送他们的游戏状态,我非常清楚不要向用户发送垃圾邮件。

Class Helper {
function pwCall( $action, $data = array() ) {
    $url = 'https://cp.pushwoosh.com/json/1.3/' . $action;
    $json = json_encode( array( 'request' => $data ) );
    $res = helper::doPostRequest( $url, $json, 'Content-Type: application/json' );
    @json_decode( $res, true );
}


helper::pwCall( 'createMessage', array(
'application' => PW_APPLICATION,
'auth' => PW_AUTH,
'notifications' => array(
            array(
                'send_date' => 'now',
                'content' => array('en' => "..your turn to play.",
                                   'fr' => "..votre tour de jouer",
                                   ),
                'ios_badges' => $row->count,
                'devices' => array($pushToken),                        
                'data' => array( 'custom' => 'json data' )
            )
        )
    )
);  

需要用中午 12:30 或 13:30(军用时间)替换“现在”

4

2 回答 2

2

你应该把(例子):

send_date => "2014-04-01 12:30",
ignore_user_timezone => false

如果您使用 Timezeones,请确保至少提前 24 小时安排通知。

于 2014-04-01T10:44:48.510 回答
1

实际上,为了根据用户的时区发送通知,您只需在请求中添加以下行:

'ignore_user_timezone' => 假,

然后,您可以在“send_date”部分指定首选时间,格式为“YYYY-MM-DD HH:mm”。军事时间会很好。

于 2014-03-31T04:03:58.123 回答