1

如何在聊天客户端中发送媒体消息?我正在使用 JS SDK 并基于教程https://www.twilio.com/docs/api/chat/guides/media-support,但出现错误。我正在使用这样的sendMessage方法:

channel.sendMessage({ contentType: 'image/png', media: 'base64 string image' });

错误信息:

{
  commandId: "e289ff36-4d9d-4fdb-8e36-46078c7228ef"
  response {
    responseTime: "2017-10-02T00:20:26.675Z"
    status: 50107
    statusText:"User unauthorized for command"
  }
}
4

1 回答 1

2

(Twilio Chat 开发人员在这里)

为了能够发送多媒体消息,用户应该对所使用的角色具有 sendMediaMessage 权限(以及 sendMessage 权限——但这很可能已经存在)。

有关详细信息,请参阅https://www.twilio.com/docs/api/chat/guides/media-support#required-role-permission

于 2017-10-02T12:24:21.700 回答