我使用Cordova FCM插件来显示推送通知。我需要使用诸如WhatsApp和Facebook Push Notifications之类的按钮的推送通知。是否有任何方法可以在FCM推送通知中添加按钮?如果没有,我该怎么做?
似乎可以使用FCM做到这一点。这个概念是在有效载荷的data
部分中设置actions
:
- https://github.com/phonegap/phonegap-plugin-push/blob/master/master/docs/payload.md#action-buttons
这样的结构:
{
"registration_ids": ["my device id"],
"data": {
"title": "AUX Scrum",
"message": "Scrum: Daily touchbase @ 10am Please be on time so we can cover everything on the agenda.",
"actions": [
{
"icon": "emailGuests",
"title": "EMAIL GUESTS",
"callback": "emailGuests",
"foreground": true
},
{
"icon": "snooze",
"title": "SNOOZE",
"callback": "snooze",
"foreground": false
}
]
}
}
您已经为FCM推送通知发送了什么代码?您正在使用什么库?