Firebase Cloud Messaging(FCM推送)
154
2024-07-05
密钥文件
进入项目 > 设置 > 项目设置 > 服务账号 > 生产新的私钥。
服务器发送
推荐两种方式:
- 使用 Firebase Admin SDK。
- 使用 FCM HTTP v1 API。
数据格式
{
"message": {
"topic": "news",
"token":"bk3RNwTe3H0:CI2k_HHwgIpoDKCIZvvDMExUdFQ3P1...",
"notification": {
"title": "Breaking News",
"body": "New news story available."
},
"data": {
"story_id": "story_12345"
},
"android": {
"notification": {
"click_action": "TOP_STORY_ACTIVITY",
"body": "Check out the Top Story"
}
},
"apns": {
"payload": {
"aps": {
"category" : "NEW_MESSAGE_CATEGORY"
}
}
}
}
}
数据消息:无 notification 字段。
通知消息:有 notification 字段。
Android端实现
官方文档是扩展com.google.firebase.messaging.FirebaseMessagingService#onMessageReceived
重写onMessageReceived
去处理。
或者使用自主性更高的方式,扩展com.google.firebase.messaging.FirebaseMessagingService#onMessageReceived
,但重写com.google.firebase.messaging.EnhancedIntentService#handleIntent
的handleIntent
方法去处理。
- 2
- 0
-
分享