服务器上的推送通知发送失败,出现 401 错误

我正在开发具有网络推送通知功能的 KaiOS 应用程序。

虽然以下代码在 Chrome 和当前的 Mozilla 上有效,但在 KaiOS 上失败。

NodeJS 代码:

const push = require('web-push');
const vapidKeys = {
  publicKey: 'PUBLIC_KEY',privateKey: 'PRIVATE_KEY',};

push.setVapidDetails(
  'valid@email.com',vapidKeys.publicKey,vapidKeys.privateKey
);

const pushSub = {
  endpoint: 'https://push.kaiostech.com:8443/wpush/v2/gAAAAABgNqjxZulGGFU',keys: {
    auth: 'AUTH',p256dh: 'P256dH',},};

KaiOS:

failed to send notification WebPushError: Received unexpected response code
    at IncomingMessage.<anonymous> (/node_modules/web-push/src/web-push-lib.js:347:20)
    at IncomingMessage.emit (events.js:327:22)
    at endReadableNT (_stream_readable.js:1221:12)
    at processTicksAndRejections (internal/process/task_queues.js:84:21) {
  statusCode: 401,headers: {
    date: 'Thu,25 Feb 2021 15:35:19 GMT','content-length': '15','content-type': 'text/plain; charset=utf-8',connection: 'close'
  },body: '{"errno":"109"}',endpoint: 'https://push.kaiostech.com:8443/wpush/v2/gAAAAABgNqjxZulGGFU-72vZJFv0avzqAZAdWd7FSwZBINZ8AvsEkxAU2J3AFcs0e4aEUIYxi8aSzCCn8ihUgof_nfLGyR8VBprtzgZEABf14rSb9RgGgwxQip6f2792pS0BcUawcerZbNstCotDYTXdNZ7jQvegfDHUEHvril1KeEeaMoi4nGk'
}

但是在 Mozilla(经过适当的关键更改)上,它的响应是成功的。在 Chrome 上也一样。

notification response:  {
  statusCode: 201,body: '',headers: {
    'access-control-allow-headers': 'content-encoding,encryption,crypto-key,ttl,encryption-key,content-type,authorization','access-control-allow-methods': 'POST','access-control-allow-origin': '*','access-control-expose-headers': 'location,www-authenticate','content-type': 'text/html; charset=UTF-8',date: 'Wed,24 Feb 2021 20:38:35 GMT',location: 'https://updates.push.services.mozilla.com/m/gAAAAABgNrlLgRnDfpaVmZjc6eqnAxoXkaYkTT4nKCTI1ZIBt62hfu2l3XvGr0F8HfvW54etByCQNSX89ubyBjd2VtXOTPqfsiC4-iDBWol9q9GRwiBSgjFc2M5-avDmrRpq9eCAsxlgGCzp2sRYRqvVDAQBHa8GznLzKmDE87rWZM6ItMiLS8PN0jqiSZFYMlqooeCK53QN',server: 'nginx','strict-transport-security': 'max-age=31536000;includeSubDomains',ttl: '2419200','content-length': '0',connection: 'Close'
  }
}

这是客户服务工作者代码:

self.addEventListener('push',(event) => {
  console.log('push event',event);
  const title = event.data.text();

  event.waitUntil(self.registration.showNotification(title));
});

任何想法,可能有什么问题?

bluegame111111 回答:服务器上的推送通知发送失败,出现 401 错误

push.sendNotification(pushSub,'hello my name is me',{
    contentEncoding: 'aesgcm'
})
.then(function (res) {
    console.log('notification response: ',res);
})
.catch(function (err) {
    console.error('failed to send notification',err);
});

https://github.com/web-push-libs/web-push/issues/603

,

这个服务器push.kaiostech.com需要授权。它只允许从 KaiOS 设备访问。

本文链接:https://www.f2er.com/858183.html

大家都在问