我试图使用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"
}
]
}
提前致谢。