无法将媒体发布到Twilio可编程聊天频道

时间:2018-10-01 16:54:29

标签: twilio twilio-api twilio-programmable-chat

我正在尝试使用sendMessage函数将媒体发布到Twilio聊天,但是它不起作用:

channel.sendMessage({
  contentType: 'image/svg+xml; charset=utf-8',
  media:
  '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">' +
  '<path d="M50,3l12,36h38l-30,22l11,36l-31-21l-31,21l11-36l-30-22h38z"'+
  ' fill="#FF0" stroke="#FC0" stroke-width="2"/></svg>',
}).catch(function (reason) {
  console.log(reason);
});

此代码未返回错误,但是我无法发送图像?!
我使用的是twilio-chat-demo-js示例,可以创建/删除频道并发送/接收短信,但是我对发送媒体感到困惑。

我正在使用的用户有权访问sendMessagesendMediaMessage

0 个答案:

没有答案