【发布时间】:2020-01-05 08:36:08
【问题描述】:
要发送通知,您需要发送以下 HTTP 请求:
POST /fcm/send HTTP/1.1 Host: fcm.googleapis.com Content-Type: application/json Authorization: key=YOUR_SERVER_KEY { "notification": { "title": "New chat message!", "body": "There is a new message in FriendlyChat", "icon": "/images/profile_placeholder.png", "click_action": "http://localhost:5000" }, "to":"YOUR_DEVICE_TOKEN" }
我该怎么做??
【问题讨论】:
标签: node.js firebase firebase-cloud-messaging