我目前正在为我的 iOS 和 Android 应用程序从 Urban airship 更改为 Pushwoosh!一切似乎都很好,但有一些小问题。
是否可以更改应用程序中按钮的内容?当我在应用程序中收到推送时,会显示“取消”和“确定!”。
是否可以将推送设置为仅在应用程序外部显示而不是在应用程序内显示?
希望提前帮助和感谢:-)
编辑:
以下是我使用 PHP 从服务器发送推送的方式:
include("includes/pushwoosh.php");
pwCall( 'createMessage', array(
'application' => PW_APPLICATION,
'auth' => PW_AUTH,
'notifications' => array(
array(
'send_date' => 'now',
'devices' => array($row['devicetoken']),
'content' => $userName.' '.$languagestring[59],
'data' => array( 'custom' => 'json data' )
)
)
)
);
我可以在其中设置某种参数以使我的问题有效吗?