我正在使用Laravel 5.4
,我刚刚开始学习firebase messaging
,如果有人发送,我想在我的网络浏览器上获取notification
。
我已实施的内容是:master page
我已导入firebase scripts
,如下所示:
资源/视图/布局/ master.blade.php:
<script src="https://www.gstatic.com/firebasejs/4.8.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/4.8.1/firebase-messaging.js"></script>
<script type="text/javascript">
firebase.initializeApp({
'messagingSenderId': '1***************2' //i.e.My firebase key
});
const messaging = firebase.messaging();
</script>
{{ HTML::script('firebase-messaging-sw.js')}} // This script file is there in the public (i.e. root) directory
<script type="text/javascript">
messaging.onMessage(function(payload){
console.log('onMessage', payload);
});
</script>
并且
火力的消息传递-sw.js:
if ('serviceWorker' in navigator) {
console.log("serviceWorker exists");
navigator.serviceWorker.register('/../firebase-messaging-sw.js')
.then((registration) => {
messaging.useServiceWorker(registration);
messaging.requestPermission()
.then(function() {
console.log('requestPermission Notification permission granted.');
return messaging.getToken();
})
.then(function(token) {
console.log("requestPermission: ", token); // Display user token
})
.catch(function(err) { // Happen if user deney permission
console.log('requestPermission: Unable to get permission to notify.', err);
});
// Get Instance ID token. Initially this makes a network call, once retrieved
// subsequent calls to getToken will return from cache.
messaging.getToken()
.then(function(currentToken) {
if (currentToken) {
console.log("getToken", currentToken);
} else {
// Show permission request.
console.log('getToken: No Instance ID token available. Request permission to generate one.');
}
})
.catch(function(err) {
console.log('getToken: An error occurred while retrieving token. ', err);
});
// Callback fired if Instance ID token is updated.
messaging.onTokenRefresh(function() {
messaging.getToken()
.then(function(refreshedToken) {
console.log('onTokenRefresh getToken Token refreshed.');
console.log('onTokenRefresh getToken', refreshedToken);
})
.catch(function(err) {
console.log('onTokenRefresh getToken Unable to retrieve refreshed token ', err);
});
});
// [START background_handler]
messaging.setBackgroundMessageHandler(function(payload) {
console.log('[firebase-messaging-sw.js] Received background message ', payload);
// Customize notification here
const notificationTitle = 'Background Message Title';
const notificationOptions = {
body: 'Background Message body.',
icon: '/firebase-logo.png'
};
return self.registration.showNotification(notificationTitle, notificationOptions);
});
// [END background_handler]
});
}
else {
console.log("serviceWorker does not exists");
}
使用控制台登录浏览器,我收到消息requestPermission Notification permission granted.
和get token
以及生成的令牌。
在Mozilla Firefox中,似乎一切正常,但在chrome中我得到了这个javascript错误:
controller-interface.js:137
Uncaught (in promise) e
{
code: "messaging/only-available-in-sw",
message: "Messaging: This method is available in a service worker context. (messaging/only-available-in-sw).",
stack: "FirebaseError: Messaging: This method is available…irebase-messaging-sw.js:67:19)"
}
code:
"messaging/only-available-in-sw"message: "Messaging: This method is available in a service worker context. (messaging/only-available-in-sw).
"stack: "FirebaseError: Messaging: This method is available in a service worker context. (messaging/only-available-in-sw) at t.e.setBackgroundMessageHandler (https://www.gstatic.com/firebasejs/4.8.1/firebase-messaging.js:6:11342) ..."
现在,发送消息我正在使用post-man:
Request type: post
URL: https://fcm.googleapis.com/fcm/send
Headers: Authorization: key=AAA*****fg // i.e. my authorization token
Body:
{
"notification": {
"title": "Some title",
"body": "Some body",
"icon": "firebase-logo.png",
"click_action": ""
},
"to": "f3ea******q" //token generated by firebase using getToken method
}
我得到了成功回应:
{
"multicast_id": 5************1,
"success": 1,
"failure": 0,
"canonical_ids": 0,
"results": [
{
"message_id": "https://updates.push.services.mozilla.com/m/gAAAAA***********byb"
}
]
}
但是,我无法在浏览器上收到通知。如果收到通知,则必须通过控制台记录我在setBackgroundMessageHandler
或messaging.onMessage
方法中添加的语句。
我是否遗漏或配置错误? 附:所有这些代码都在我的linux服务器上运行HTTPS。
答案 0 :(得分:0)
而不是使用{{HTML :: script('firebase-messaging-sw.js')}}
使用<script src="/firebase-messaging-sw.js"></script>
从后端你需要发出卷曲请求:
$url='http://fcm.googleapis.com/fcm/send';
$fields =array("registration_ids"=> $registration_id,"data"=> $message,
"priority"=>'high');
$headers = array('Authorization: key=xxxxxx','Content-Type:
application/json');
// Open connection
$ch = curl_init();
// Set the url, number of POST vars, POST data
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));
$result = curl_exec($ch);
curl_close($ch);
您必须使用适当的有效负载进行curl请求作为firebase合规性。 我在fields对象中使用了$ registration_id,这意味着为该特定设备/ web应用程序生成了fcm_token。
答案 1 :(得分:0)
根据Google描述的最佳做法,
而不是在文件resources / views / layouts / master.blade.php中引用服务工作者
您可以在Firebase消息传递服务工作程序中包含firebase初始化过程( firebase-messaging-sw.js )