Как воспроизвести разговор через nodeJs с помощью Messagebird WhatsApp Business API? - PullRequest
0 голосов
/ 04 февраля 2020

Как проверить?

начать с этого URL: https://developers.messagebird.com/docs/whatsapp/getting-started/

var messagebird = require ('messagebird') ();

мой код

messagebird.conversations.reply(data.id, {
      'type': 'image',
      'content': {
        'image': {
          'url': 'https://api.faridblaster.my/test',
          'caption': 'Bocaahhh3332'
        }
      }
    }, function (err, response) {
      if (err) {
        return console.log(err);
      }
    });

результат покажет мне

enter image description here

Ожидаемый результат должен составлять

статус: «доставлено»,

enter image description here

Заранее спасибо!

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...