gpt4 book ai didi

firebase - Firebase 云消息传递服务器 key 的 Base64 编码

转载 作者:行者123 更新时间:2023-12-05 00:53:25 27 4
gpt4 key购买 nike

自 3 天以来,我一直陷入这个问题并搜索了谷歌,但没有成功。我按照 Push Notifications Example 中给出的说明进行操作.但是当我尝试实现它时,我得到了这个讨厌的错误。

Uncaught (in promise) DOMException: Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded.

我发现 Base64 字符串中不允许使用冒号(:),但在 Cloud Messenging 选项卡中的 Firebase 中给出的服务器 key 是
AAAA-8MWvk0:APA91bHmU8XL-rzOn9SPbpG98NSqAJcuhYBBh7oze_XhprBpK7Q9PPWm3PwBo6Llxby4zjhVtgvKPIaSAQGp-8RfMV10_d1GekzICrVX9oYO8pi6dOM4VTp52CCAzug6NYIa10tNddsgE2P5QowGAYcnRHxLkrHXsw

其中包含一个冒号(别担心,它只是一个测试应用程序,所以隐私没有问题)。

当我尝试使用旧服务器 key 时,它只会引发错误。我也尝试使用 Firebase 中提供的其他键,但没有成功。请告诉我实际使用哪个服务器 key 以及如何使用?

我附上了我的代码片段,它实际上执行了推送订阅。
 const API_KEY = "AIzaSyByIOl-mW0pu8SEXFeutB8jq59hhiau0wI";
var GCM_ENDPOINT = 'https://fcm.googleapis.com/fcm/send';
const legacy = 'AIzaSyDGF8t125bJ4wBvYn_UdRewkTxHGr7KpH8';
const applicationServerPublicKey = 'AAAA-8MWvk0APA91bHmU8XL-rzOn9SPbpG98NSqAJcuhYBBh7oze_XhprBpK7Q9PPWm3PwBo6Llxby4zjhVtgvKPIaSAQGp-8RfMV10_d1GekzICrVX9oYO8pi6dOM4VTp52CCAzug6NYIa10tNddsgE2P5QowGAYcnRHxLkrHXsw';

function urlB64ToUint8Array(base64String) {
const padding = '='.repeat((4 - base64String.length % 4) % 4);
const base64 = (base64String + padding)
.replace(/\-/g, '+')
.replace(/_/g, '/');
console.log(base64);
const rawData = window.atob(base64);
console.log(rawData);
const outputArray = new Uint8Array(rawData.length);

for (let i = 0; i < rawData.length; ++i) {
outputArray[i] = rawData.charCodeAt(i);
}
return outputArray;
}

function endpointWorkaround(pushSubscription) {
// Make sure we only mess with GCM
if(pushSubscription.endpoint.indexOf('https://fcm.googleapis.com/fcm/send') !== 0) {
return pushSubscription.endpoint;
}

var mergedEndpoint = pushSubscription.endpoint;
// Chrome 42 + 43 will not have the subscriptionId attached
// to the endpoint.
if (pushSubscription.subscriptionId &&
pushSubscription.endpoint.indexOf(pushSubscription.subscriptionId) === -1) {
// Handle version 42 where you have separate subId and Endpoint
mergedEndpoint = pushSubscription.endpoint + '/' +
pushSubscription.subscriptionId;
}
return mergedEndpoint;
}

function sendSubscriptionToServer(subscription) {
// TODO: Send the subscription.endpoint
// to your server and save it to send a
// push message at a later date
//
// For compatibly of Chrome 43, get the endpoint via
// endpointWorkaround(subscription)
console.log('TODO: Implement sendSubscriptionToServer()', JSON.stringify(subscription));

var mergedEndpoint = endpointWorkaround(subscription);

// This is just for demo purposes / an easy to test by
// generating the appropriate cURL command
var temp = showCurlCommand(mergedEndpoint);
return temp;
}

// NOTE: This code is only suitable for GCM endpoints,
// When another browser has a working version, alter
// this to send a PUSH request directly to the endpoint
function showCurlCommand(mergedEndpoint) {
// The curl command to trigger a push message straight from GCM
if (mergedEndpoint.indexOf(GCM_ENDPOINT) !== 0) {
console.warn('This browser isn\'t currently ' + 'supported for this demo');
return;
}

var endpointSections = mergedEndpoint.split('/');
var subscriptionId = endpointSections[endpointSections.length - 1];

var curlCommand = 'curl --header "Authorization: key=' + API_KEY + '" --header Content-Type:"application/json" ' + GCM_ENDPOINT + ' -d "{\\"registration_ids\\":[\\"' + subscriptionId + '\\"]}"';

console.log(curlCommand);
return subscriptionId;
}

function initialiseState() {
// Are Notifications supported in the service worker?
if (!('showNotification' in ServiceWorkerRegistration.prototype)) {
console.warn('Notifications aren\'t supported.');
return;
}

// Check the current Notification permission.
// If its denied, it's a permanent block until the
// user changes the permission
if (Notification.permission === 'denied') {
console.warn('The user has blocked notifications.');
return;
}

// Check if push messaging is supported
if (!('PushManager' in window)) {
console.warn('Push messaging isn\'t supported.');
return;
}
var prom = new Promise(function(resolve, reject) {
navigator.serviceWorker.ready.then(function(serviceWorkerRegistration) {
// Do we already have a push message subscription?
serviceWorkerRegistration.pushManager.getSubscription().then(function(subscription) {
// Enable any UI which subscribes / unsubscribes from
// push messages.
// var pushButton = document.querySelector('.js-push-button');
// pushButton.disabled = false;

if (!subscription) {
// We aren’t subscribed to push, so set UI
// to allow the user to enable push
subscribe();
return;
}

// Keep your server in sync with the latest subscription
var temp = sendSubscriptionToServer(subscription);
if(temp){
resolve(temp);
}else{
reject("Oops!")
}

// Set your UI to show they have subscribed for
// push messages
// pushButton.textContent = 'Disable Push Messages';
// isPushEnabled = true;
})
.catch(function(err) {
console.error('Error during getSubscription()', err);
reject(err);
});
});
});
return prom;
}

function unsubscribe() {
// var pushButton = document.querySelector('.js-push-button');
// pushButton.disabled = true;

navigator.serviceWorker.ready.then(function(serviceWorkerRegistration) {
// To unsubscribe from push messaging, you need get the
// subcription object, which you can call unsubscribe() on.
serviceWorkerRegistration.pushManager.getSubscription().then(
function(pushSubscription) {
// Check we have a subscription to unsubscribe
if (!pushSubscription) {
// No subscription object, so set the state
// to allow the user to subscribe to push
// isPushEnabled = false;
// pushButton.disabled = false;
// pushButton.textContent = 'Enable Push Messages';
return;
}

// TODO: Make a request to your server to remove
// the users data from your data store so you
// don't attempt to send them push messages anymore

// We have a subcription, so call unsubscribe on it
pushSubscription.unsubscribe().then(function() {
// pushButton.disabled = false;
// pushButton.textContent = 'Enable Push Messages';
// isPushEnabled = false;
}).catch(function(e) {
// We failed to unsubscribe, this can lead to
// an unusual state, so may be best to remove
// the subscription id from your data store and
// inform the user that you disabled push

console.log('Unsubscription error: ', e);
// pushButton.disabled = false;
});
}).catch(function(e) {
console.error('Error thrown while unsubscribing from ' + 'push messaging.', e);
});
});
}

function subscribe() {
// Disable the button so it can't be changed while
// we process the permission request
// var pushButton = document.querySelector('.js-push-button');
// pushButton.disabled = true;

navigator.serviceWorker.ready.then(function(serviceWorkerRegistration) {
const applicationServerKey = urlB64ToUint8Array(applicationServerPublicKey);
serviceWorkerRegistration.pushManager.subscribe({userVisibleOnly: true, applicationServerKey: applicationServerKey})
.then(function(subscription) {
console.log(subscription);
// The subscription was successful
// isPushEnabled = true;
// pushButton.textContent = 'Disable Push Messages';
// pushButton.disabled = false;

// TODO: Send the subscription subscription.endpoint
// to your server and save it to send a push message
// at a later date
return sendSubscriptionToServer(subscription);
})
.catch(function(e) {
if (Notification.permission === 'denied') {
// The user denied the notification permission which
// means we failed to subscribe and the user will need
// to manually change the notification permission to
// subscribe to push messages
console.log('Permission for Notifications was denied');
// pushButton.disabled = true;
} else {
// A problem occurred with the subscription, this can
// often be down to an issue or lack of the gcm_sender_id
// and / or gcm_user_visible_only
console.log('Unable to subscribe to push.', e);
// pushButton.disabled = false;
// pushButton.textContent = 'Enable Push Messages';
}
});
});
}

最佳答案

可悲的是,这对 Chrome 来说是一件令人困惑的事情。

最基本的: Web Push 完全独立于 Firebase 网络消息传递。

Web 推送和应用服务器 key

Web 推送需要一个应用程序服务器 key ,这是您传递给服务 worker 推送管理器的订阅调用的内容:

pushManager.subscribe({userVisibleOnly: true, applicationServerKey: MY_KEY});

在网络推送中, applicationServerKey需要是 Uint8Array(即 65 个字节的数组)。您可以随意生成此 key ,只需确保将私钥保密并在您的 Web 应用程序中使用公钥。

在我编写的代码实验室中,我指示您从以下位置获取 key : https://web-push-codelab.appspot.com/

此页面即时生成一组应用程序服务器 key 并将结果存储在本地存储中(因此您可以使用同一页面发送推送消息 - 这需要该应用程序服务器 key )。

您可以通过 web-push's node CLI 等工具轻松获取 key 。 .

Firebase 服务器 key

用于 Web 的 Firebase 消息传递 SDK 使用服务工作人员在 Web 上实现推送,但它会为您管理应用程序服务器 key 。原因是 Firebase 消息传递 SDK 设置您使用 Firebase 云消息 API 来触发推送消息,而不是您需要在您正在处理的代码实验室中使用的 Web 推送协议(protocol)。

Firebase 控制台中的“服务器 key ”是您在触发推送消息时使用的 key ,它是“授权” header 。
https://fcm.googleapis.com/fcm/send
Content-Type: application/json
Authorization: key=<YOUR SERVER KEY HERE>

概括
  • Firebase Messaging 有自己的网络推送 SDK,如果你使用它,那么你应该遵循它的指南并使用它的服务器端 API。
  • 网络推送(开放网络标准)与 Firebase(或任何其他推送服务)没有直接依赖关系,因此您可以创建特定格式的 key 并使用网络推送协议(protocol)来触发推送消息。 (Chrome 在后台使用 Firebase,但作为 Web 推送站点的开发人员,您无需为 Firebase 做任何事情)。
  • 关于firebase - Firebase 云消息传递服务器 key 的 Base64 编码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41338179/

    27 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com