Skip to content

Instantly share code, notes, and snippets.

@Skyyo
Created November 19, 2020 14:09
Show Gist options
  • Save Skyyo/12e0c6de8c9d3fa53113c954eac148c7 to your computer and use it in GitHub Desktop.
Save Skyyo/12e0c6de8c9d3fa53113c954eac148c7 to your computer and use it in GitHub Desktop.
#fcm #push notifications
@POST https://fcm.googleapis.com/fcm/send
HEADERS:
Authorization key=AAAA... (Server key)
Content-Type application/json
BODY:
{
"to": "/topics/topicName",
"content_available": false,
"mutable_content": true,
"data": {
"click_action": "FLUTTER_NOTIFICATION_CLICK",
"date": "2020-03-19 14:58:18",
"type": "awd"
"image": "https://img.pravda.com/images/doc/5/6/5670571-radutskyy-485_485x299.jpg"
},
"notification": {
"type": "awd",
"body": "Description of some sort",
"image": "https://img.pravda.com/images/doc/5/6/5670571-radutskyy-485_485x299.jpg",
"sound": "default"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment