Не удалось проверить подписку на приложение чата Facebook - PullRequest
0 голосов
/ 03 февраля 2019

Я пытался создать простой узел js facebook chatbot, следуя этому руководству (https://developers.facebook.com/docs/messenger-platform/getting-started/app-setup), шаг за шагом, подробно. Я протестировал бэкэнд с curl и почтальоном и работает нормально, я подписал свое веб-приложение наwebhook, но как только я отправляю сообщение на свою страницу с facebook.com или в Messenger, Facebook не отправляет сообщение на мой бэкэнд. Я ожидаю какого-то значения в req.body.entry.messaging.message, но facebook ничего не отправляет.

https://github.com/cristiantorresf/ChatBotLearning

'use strict';

// Imports dependencies and set up http server
const
  express = require('express'),
  bodyParser = require('body-parser'),
  app = express().use(bodyParser.json());
// token variable de entorno
const PAGE_ACCESS_TOKEN = process.env.PAGE_ACCESS_TOKEN;

// Adds support for GET requests to our webhook verificaion
app.get('/webhook', (req, res) => {

   // Your verify token. Should be a random string.
   let VERIFY_TOKEN = "1014238588"

   // Parse the query params
   // endpoint?hub.mode=subscribe&hub.verify_token=1014238588&hub.challenge=nose
   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 && token) {

     // Checks the mode and token sent is correct
     if (mode === 'subscribe' && 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);      
     }
   }
 });


 // Creates the endpoint for our webhook recive mensajes
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
       // req.body.entry
       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);
   }
});

// creates express http server
// Sets server port and logs message on success
app.listen(process.env.PORT || 1337, () => console.log('webhook is listening'));
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...