1

我试图使用rest-api将 .txt 和 .pdf 文件附加到 Skype 机器人,但出现此错误:

{
"error": {
    "code": "BadArgument",
    "message": "Unknown attachment type"
}

}

同时我发现Rest API 附件错误,任何人都可以确认 pdf 或文本文件附件是否受到限制,因为他们的 api 中没有明确的声明?我试过这种格式:

 {
    "type": "message",

   "recipient": {
        "id": "xxxxxxxJ0niMZOII93xxxxL1E"
    },
    "text": "Here's a picture of the duck I was telling you about.",
    "attachments": [
        {
          "contentType": "application/pdf",
          "contentUrl": "myfileurl",
          "name": "filename.pdf"
        }
    ]
}

提前致谢。

4

1 回答 1

2

出于安全考虑,机器人尚不支持发送 PDF 等附件。Skype 只能发送音频和视频等媒体附件。

你可以参考这里

于 2018-06-21T09:03:26.283 回答