我試圖從FCM
設置NodeJS Client Web App
。我在服務器端設置了firebase-admin
。當設置客戶端訪問令牌時,我得到一個TypeError: firebase.messaging is not a function
錯誤。從其他解決方案看來,它似乎是不同FCM版本之間的兼容性錯誤,但仍然可以修復它。以下是我正在使用的html文件Firebase:firebase.messaging()不是函數
<html>
<head>
<script src="https://www.gstatic.com/firebasejs/3.1.0/firebase.js"></script>
</head>
<body>
<script>
console.log(firebase);
const messaging = firebase.messaging();
messaging.onTokenRefresh(function() {
messaging.getToken()
.then(function (refreshedToken) {
console.log('Token refreshed.');
console.log(refreshedToken);
// // Indicate that the new Instance ID token has not yet been sent to the
// // app server.
// setTokenSentToServer(false);
// // Send Instance ID token to app server.
// sendTokenToServer(refreshedToken);
// // [START_EXCLUDE]
// // Display new Instance ID token and clear UI of all previous messages.
// resetUI();
// // [END_EXCLUDE]
})
.catch(function (err) {
console.log('Unable to retrieve refreshed token ', err);
// showToken('Unable to retrieve refreshed token ', err);
});
});
</script>
</body>
</html>
如何在客戶端正確設置firebase? 編輯:console.log(firebase)
給出:
SDK_VERSION: "3.1.0", initializeApp: ƒ, app: ƒ, Promise: ƒ, …}
INTERNAL:{registerService: ƒ, createFirebaseNamespace: ƒ, extendNamespace: ƒ, createSubscribe: ƒ, ErrorFactory: ƒ, …}
Promise:ƒ Promise()
SDK_VERSION : "3.1.0"
User:ƒ (a,b,c)
app:ƒ a(a)
apps:(...)
auth:ƒ (c)
database:ƒ (c)
initializeApp:ƒ (a,c)
storage:ƒ (c)
get apps:ƒ()
__proto__
:
Object
Firebase是否加載? –
是的,是的。我用'console.log(firebase);'得到一個對象。但它沒有'messaging()'函數。我會在問題中補充一點。 – ashwinx