尝试在用户当地时间发送推送,而不是打扰他们。
需要在用户本地时间发送推送通知。
通知不经常发送他们的游戏状态,我非常清楚不要向用户发送垃圾邮件。
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(军用时间)替换“现在”