1. It is possible to send push message with non-ASCII characters (e.g. Chinese characters "你好") in JavaScript SDK?
I tried to do so with:
pushNotificationService.sendPushMessageToAll("你好", ...) but the iOS client received "??" instead of "你好"。
2. Is is possible to add application key in JavaScript SDK? e.g:
var m = { "alert" : "New version is available", "downloadUrl" : "
http://some.url.to.open" }
pushNotificationService.sendPushMessageToAll(m, ...)
So in the iOS client I can get the downloadUrl and open it for user.