Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save phuochau/2cf448b05075796979871f60c6eaa094 to your computer and use it in GitHub Desktop.
Save phuochau/2cf448b05075796979871f60c6eaa094 to your computer and use it in GitHub Desktop.
Send Firebase push notification with cURL
curl -d '{
"to": "REGISTRATION_TOKEN",
"notification": {
"title" : "Hello",
"body" : "World"
}
}' \
-i -H "Application/json" \
-H "Content-type: application/json" \
-H "Authorization: key=SERVER_KEY" \
-X POST https://fcm.googleapis.com/fcm/send
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment