Code:
https://gcm-http.googleapis.com/gcm/send
Content-Type:application/json
Authorization:key=AIzaSyZ-1u...0GBYzPu7Udno5aA
{ "data": {
"score": "5x1",
"time": "15:10"
},
"to" : "bk3RNwTe3H0:CI2k_HHwgIpoDKCIZvvDMExUdFQ3P1..."
}
Code:
var textNotification={
"notification": {
"title": "Portugal vs. Denmark",
"text": "5 to 1"
}
};
$.ajax(
{
url : "https://gcm-http.googleapis.com/gcm/send",
type : "POST",
headers :
{
'Authorization' : 'AIzaSyZ-1u...',
'Content-type': 'application/json'
},
data : textNotification
}
).done(function (data)
{
console.log(data);
}
);
Statistics: Posted by RalphKeil — Mon Jul 26, 2021 5:50 pm
Statistics: Posted by beegee1962 — Tue Feb 02, 2016 8:26 pm
Statistics: Posted by wuyunzhou — Tue Feb 02, 2016 5:17 pm
Statistics: Posted by beegee1962 — Mon Feb 01, 2016 5:33 pm