我可以使用下面的代码为chrome和firefox生成令牌,但是为Edge获取错误。
firebase.initializeApp(config);
const messaging = firebase.messaging();
messaging.requestPermission()
.then(function() {
return messaging.getToken();
})
.then(function(token) {
console.log(token);
}
})
.catch(function(err) {
console.log('Unable to get permission to notify.', err);
})
FirebaseError: Messaging: This browser doesn't support the API's required to use the firebase SDK