Код, работающий на сервере, выдает ошибку при запуске на локальном хосте

#javascript #node.js #express

Вопрос:

Чтобы воссоздать код, просто следуйте этой статье

Окончательный код-это:

 'use strict';

// Imports dependencies and set up http server
const
  express = require('express'),
  bodyParser = require('body-parser'),
  app = express().use(bodyParser.json()); // creates express http server

// Sets server port and logs message on success
app.listen(process.env.PORT || 1337, () => console.log('webhook is listening'));

// Creates the endpoint for our webhook 
app.post('/webhook', (req, res) => {  
 
  let body = req.body;

  // Checks this is an event from a page subscription
  if (body.object === 'page') {

    // Iterates over each entry - there may be multiple if batched
    body.entry.forEach(function(entry) {

      // Gets the message. entry.messaging is an array, but 
      // will only ever contain one message, so we get index 0
      let webhook_event = entry.messaging[0];
      console.log(webhook_event);
    });

    // Returns a '200 OK' response to all requests
    res.status(200).send('EVENT_RECEIVED');
  } else {
    // Returns a '404 Not Found' if event is not from a page subscription
    res.sendStatus(404);
  }

});

app.get('/webhook', (req, res) => {

  // Your verify token. Should be a random string.
  let VERIFY_TOKEN = "<YOUR_VERIFY_TOKEN>"
    
  // Parse the query params
  let mode = req.query['hub.mode'];
  let token = req.query['hub.verify_token'];
  let challenge = req.query['hub.challenge'];
    
  // Checks if a token and mode is in the query string of the request
  if (mode amp;amp; token) {
  
    // Checks the mode and token sent is correct
    if (mode === 'subscribe' amp;amp; token === VERIFY_TOKEN) {
      
      // Responds with the challenge token from the request
      console.log('WEBHOOK_VERIFIED');
      res.status(200).send(challenge);
    
    } else {
      // Responds with '403 Forbidden' if verify tokens do not match
      res.sendStatus(403);      
    }
  }
});
 

Получить маршрут запроса работает нормально, но когда я нажму на сообщение с этим запросом

 curl -H "Content-Type: application/json" -X POST "localhost:1337/webhook" -d '{"object": "page", "entry": [{"messaging": [{"message": "TEST_MESSAGE"}]}]}'
 

Я получаю эту ошибку, несмотря на то, что json действителен

 SyntaxError: Unexpected token o in JSON at position 1
 

Для меня это довольно неожиданно, этот код работает на сервере с установленной версией того же узла — 14.7.6

Комментарии:

1. Знаете ли вы конкретно, какая часть этого возвращает ошибку? Можете ли вы отследить его до определенной линии?

2. К сожалению, я не могу

3. вы пробовали регистрировать переменную тела?

4. Похоже, что .use(bodyParser.json() генерирует ошибку, но я не знаю, что мне нужно изменить

5. Что произойдет, если вы отправите запрос в строковой форме? Подобный этому curl -H "Content-Type: application/json" -X POST "localhost:1337/webhook" -d "{"object": "page", "entry": [{"messaging": [{"message": "TEST_MESSAGE"}]}]}"