web-push未知问题,WebPushError“收到意外响应代码”400

时间:2016-05-04 11:50:46

标签: node.js google-chrome google-cloud-messaging service-worker web-push

使用GCM和chrome开发 web-push 期间。我最近遇到过这个问题(几小时前一切都还能正常工作)

我不确定是否由于GCM的某些更改或云的停机而发生这种情况......任何信息都将受到赞赏。

我的代码

var payload = JSON.stringify({
    title: 'notification title',
    body: 'message body'
});
webPush.sendNotification(params.endpoint, {
    userPublicKey: params.userPublicKey,
    userAuth: params.userAuth,
    payload: payload
}).then(function (res) { 
    // console.log of stuff
})
.catch(function(error){
    console.log(error);
    process.exit(1);
});

跟踪:

{
  WebPushError: Received unexpected response code
  at IncomingMessage.<anonymous> (/var/www/***/pwa/node_modules/web-push /index.js:264:20)
  at emitNone (events.js:91:20)
  at IncomingMessage.emit (events.js:185:7)
  at endReadableNT (_stream_readable.js:926:12)
  at _combinedTickCallback (internal/process/next_tick.js:74:11)
  at process._tickCallback (internal/process/next_tick.js:98:9)
  name: 'WebPushError',
  message: 'Received unexpected response code',
  statusCode: 400,
  headers: {
    'content-type': 'text/plain; charset=UTF-8',
     date: 'Wed, 04 May 2016 11:35:13 GMT',
     expires: 'Wed, 04 May 2016 11:35:13 GMT',
    'cache-control': 'private, max-age=0',
    'x-content-type-options': 'nosniff',
    'x-frame-options': 'SAMEORIGIN',
    'x-xss-protection': '1; mode=block',
     server: 'GSE',
    'alternate-protocol': '443:quic',
    'alt-svc': 'quic=":443"; ma=2592000; v="33,32,31,30,29,28,27,26,25"',
    'accept-ranges': 'none',
     vary: 'Accept-Encoding',
     connection: 'close'
  },
  body: 'JSON_PARSING_ERROR: Unexpected token END OF FILE at position 467.\n' 
}

2 个答案:

答案 0 :(得分:1)

@Lihn,粘贴你的有效载荷。从消息的错误,似乎你发送格式错误的json消息。

您可以使用this service检查json中的语法问题。

GCM docs表示无法解析状态代码400表示json消息。

答案 1 :(得分:1)

如果您尝试使用web-push发送推送通知,请尝试使用#npm run web-push generate-vapid-keys重新生成公钥和私钥。请替换这些键再试一次。祝你好运。