Unable to send data message using firebase console

后端 未结 4 788
慢半拍i
慢半拍i 2020-11-27 18:47

I\'m using firebase console and can send only Notification messages using it.

Is there a way to send data messages using the same?

4条回答
  •  孤独总比滥情好
    2020-11-27 19:12

    Please look here: Firebase push notifications update DB, my post from June.

    In conclusion, you need send HTTP POST request to https://fcm.googleapis.com/fcm/send

    https://fcm.googleapis.com/fcm/send
    Content-Type:application/json
    Authorization:key=AIzaSyZ-1u...0GBYzPu7Udno5aA
    
    { "data": {
    "score": "5x1",
    "time": "15:10"
    },
      "to" : "bk3RNwTe3H0:CI2k_HHwgIpoDKCIZvvDMExUdFQ3P1..."
    }
    

提交回复
热议问题