2
現在pushwoosh可以正常工作。我可以在Android手機的左上角看到通知。如何將通知設置爲彈出屏幕而不是左上方的通知,即使手機處於靜音模式!Pushwoosh和Phonegap推送通知格式
我應該採用哪種方式進行定製? THX
function pwCall($action, $data = array()) {
$url = 'https://cp.pushwoosh.com/json/1.3/' . $action;
$json = json_encode(array('request' => $data));
$res = doPostRequest($url, $json, 'Content-Type: application/json');
print_r(@json_decode($res, true)); }
pwCall('createMessage', array( '
application' => PW_APPLICATION,
'auth' => PW_AUTH,
'notifications' => array(
array(
'send_date' => 'now',
'content' => 'test',
'ios_badges' => 3,
'data' => array('custom' => 'json data'),
'link' => 'http://pushwoosh.com/'
)
)
)
);
你可以顯示你處理通知的代碼嗎? – Raptor
我現在使用了標準的API - http://www.pushwoosh.com/programming-push-notification/pushwoosh-push-notification-remote-api/ –
我在這個時候使用PHP。 –