How to send push notifications in Chrome(Progressive Web Apps)
请解释如何使用 XHR 和 Javascript 进行推送通知。或者是否有任何其他方式可以在渐进式网络应用程序中发送推送通知。我创建了 curl 命令,当我在发送的终端推送通知中执行它时,如何在按钮单击时执行它?
这是我的 cURL 命令:-
1 | curl --header"Authorization: key=AIzaSxUdg" --header Content-Type:"application/json" https://android.googleapis.com/gcm/send -d"{"registration_ids":["cxA-dUj8BTs:APAvGlCYW"]}" |
这是我尝试过的:-
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | function send() { navigator.serviceWorker.ready .then(function(registration) { registration.pushManager.getSubscription() .then(function (subscription) { curlCommand(subscription); $.ajax({ url:"https://android.googleapis.com/gcm/send", headers: { Authorization:"key=AIzaSxUdg", }, contentType:"application/json", data: JSON.stringify({ "registration_ids": [endpoint] }), xhrFields: { withCredentials: true }, crossDomain: true, type:"push", dataType: 'json' }) .done(function() { alert('done'); }) .fail(function() { alert('err');// Error }); }) }) } |
但它显示错误 -----
XMLHttpRequest 无法加载 https://android.googleapis.com/gcm/send。对预检请求的响应未通过访问控制检查:请求的资源上不存在"Access-Control-Allow-Origin"标头。因此不允许访问源"http://localhost:8880"..
Google API 旨在从服务器中使用,因此它不包括 CORS 标头。
当您执行跨源 XHR(从您的域到 Google 的域)时,用户代理会发出预检请求以搜索 CORS 标头,告知您的客户端有权执行操作。
为此,您需要向您的服务器发出请求(即
这将起作用:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | function send() { navigator.serviceWorker.ready .then(function(registration) { registration.pushManager.getSubscription() .then(function (subscription) { curlCommand(subscription); $.ajax({ url:"https://cors-anywhere.herokuapp.com/https://android.googleapis.com/gcm/send", headers: { Authorization:"key=AIzaSxUdg", }, contentType:"application/json", data: JSON.stringify({ "registration_ids": [endpoint] }), xhrFields: { withCredentials: true }, crossDomain: true, type:"push", dataType: 'json' }) .done(function() { alert('done'); }) .fail(function() { alert('err');// Error }); }) }) } |