Skip to content

Instantly share code, notes, and snippets.

@kkm
Created October 18, 2016 02:20
Show Gist options
  • Save kkm/4b1e0713fc92a77c448b5605558970f8 to your computer and use it in GitHub Desktop.
Save kkm/4b1e0713fc92a77c448b5605558970f8 to your computer and use it in GitHub Desktop.
var params = {
headers : {
'Content-Type' : ' application/json',
'Authorization' : "key=xxxx"
},
data : {
"data" : {
"message" : "nummer:" + i
},
"to" : "11111111111",
notification : {
title : 'nummer: ' + i,
body : 'body_data'
},
},
};
Meteor.http.post("https://fcm.googleapis.com/fcm/send", params, function(err, data) {
//console.log(err);
console.log(data);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment