我尝试在没有Firebase控制台的情况下通过FCM发送通知。我想从我的申请中发送通知。我看到一条评论说:
您可以使用cURL发送通知。
curl -X POST --header "Authorization: key=<API_ACCESS_KEY>" --Header "Content-Type: application/json" https://fcm.googleapis.com/fcm/send -d "{\"to\":\"<YOUR_DEVICE_ID_TOKEN>\",\"notification\":{\"body\":\"Yellow\"} \"priority":\"10"}"
我想向所有应用用户发送通知。如何将此命令发送到Google服务?你有发送通知的代码吗?
感谢您的帮助。