As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
I fixed this problem by changing to this plugin
https://github.com/KinveyApps/Push-PhoneGap
I am having the same issue.
var androidPayload = {title:"Friend Request",message:"You have a new friend request!"};
push.sendPayload(user, iOSAps, iOSExtras, androidPayload, function(err,result){
using the above, title gets displayed properly, but message comes up in the notification as the entire Json object.
What are the androidPayload data object names meant to be to be displayed properly on the app ?
The example has message,from and subject . Changing subject to title I was able to get the title to work, however message still displays wrong.
Randolph
push.sendPayload(user, iOSAps, iOSExtras, androidPayload);
I am able to send out push messages successfully, but when when the push message appears on my Android device, it displays the entire JSON object send as the androidPayload parameter.
In other words, the notification reads:
{message: "Message would go here", from: "My app", subject: "A subject line" }
Instead of just the message. Any suggestions on what I'm doing wrong? Or missing? Are there Urban Airship features that are not in the documentation that enables Payload processing?
var iOSAps = { alert: "You have a new message", badge: 2, sound: "notification.wav" };
var iOSExtras = {from: "Kinvey", subject: "Welcome to Business Logic", msgtype: "dailycheckin"};
var androidPayload = {message: "Message would go here", from: "My app", subject: "A subject line" };
var push = modules.push;
push.sendPayload(user, iOSAps, iOSExtras, androidPayload);