Quickblox 通知聊天室中的自定义参数 IOS 到 android

Custom parameter in Quickblox notification chatroom IOS to android

大家好,我正在使用 Quickblox 创建聊天应用程序,我已按照以下说明操作:

创建 APNS 证书并将其上传到管理面板

http://quickblox.com/developers/SimpleSample-messages_users-ios#Creating_APNS_certificates

订阅用户推送通知

http://quickblox.com/developers/SimpleSample-messages_users-ios#Giving_a_user_a_Push_Notification_subscription

我已将推送通知设置为以下方式

aps =     {

alert = "user one says hi in group";
};
"dialog_id" = 54a3ee0a535c12ea3f01b89f;
"qb_chat_type" = QBGroupChat;
"qb_message_text" = hi;
"qb_message_type" = text;
"qb_sender_image" = "";
"qb_sender_name" = "Neeta khurana";
"tab_group_id" = 200;
"user_id" = 2101266;
}

但是 quickblox 在群聊中发送了 2 个推送通知,一个在我设置的上面,另一个在下面:

aps =    {
alert = "You have 15 new messages";
sound = 1;
};
"dialog_id" = 54a3ee0a535c12ea3f01b89f;
"user_id" = 2101266;
}

所以我不希望 quickblox 自动生成通知,对于 android 设备,通知不会出现。谁能帮忙解决这个问题。

我写这篇文章是为了帮助其他人,如果有人遇到此类问题,那么这里就是解决方案。您需要做什么去 quickblox 中的管理面板,然后去您的应用程序 -> 聊天 -> 警报选项卡,您会找到以下屏幕。取消勾选离线用户通知。