Я хочу использовать Firebase Cloud Messaging для отображения push-уведомлений в моем расширении.
Я следовал официальному документу и успешно получил разрешение, но не могу получить токен Firebase, используя messaging.getToken()
.Метод возвращает обещание, но он не разрешается и не выдает ошибку.
Когда я вызываю его непосредственно в консоли, все, что я получаю, это Promise
объект со статусом Pending
.
Я искал много вопросов, но не нашел решения для моего.
Вот код инициализации, который я написал в background.js
:
var config = {
apiKey: "BWgeK.................MKfP",
authDomain: "****-*****-******.firebaseapp.com",
databaseURL: "https://****-*****-******.firebaseio.com",
projectId: "****-*****-******",
storageBucket: "****-*****-******.appspot.com",
messagingSenderId: "************"
};
firebase.initializeApp(config);
const messaging = firebase.messaging();
messaging.usePublicVapidKey("******");
messaging.requestPermission()
.then(function() {
//It is printing
console.log("=== have permission ===");
return messaging.getToken();
})
.then(function(currentToken) {
//It is not printing
console.log("== f_token ==", currentToken);
})
.catch(function(err) {
console.log("==== error ====", err);
});
Вот файл manifest.json
:
{
"manifest_version": 2,
"name": "Chrome Plugin",
"description": "Chrome Plugin",
"version": "1.0.0.1",
"icons": {
"128": "images/small-logo.png"
},
"browser_action": {
"default_icon": "images/small-logo.png",
"default_popup": "index.html"
},
"background": {
"scripts": ["lib/jquery-3.2.1.min.js","lib/firebase.js", "lib/firebase-app.js","lib/firebase-auth.js", "lib/firebase-messaging.js", "firebase-messaging-sw.js", "src/background.js"],
"persistent": true
},
"content_scripts": [
{
"matches": ["https://google.com/*"],
"js": ["lib/jquery-3.2.1.min.js", "src/content.js"],
"css": ["css/dialog.css"],
"run_at": "document_end"
}],
"permissions": ["identity", "tabs", "storage", "notifications", "webRequest", "webRequestBlocking", "<all_urls>", "unlimitedStorage"],
"content_security_policy": "script-src 'self' https://www.gstatic.com/ https://*.firebaseio.com https://www.googleapis.com; object-src 'self'",
"web_accessible_resources": [
"css/dialog.css", "css/popup.css", "images/small-logo.png",
"lib/jquery-3.2.1.min.js", "lib/firebase.js", "lib/firebase-messaging.js", "lib/firebase-app.js", "lib/firebase-auth.js",
"src/main.js", "src/content.js", "firebase-messaging-sw.js"],
"oauth2": {
"client_id": "*******.apps.googleusercontent.com",
"scopes": ["*******"]
},
"gcm_sender_id": "103953800507"
}
Вывод:
=== have permission ===
Результат messaging.getToken()
в фоновой консоли:
Promise {[[PromiseStatus]]: "pending", [[PromiseValue]]: undefined}
Как мне заставить это работать?