当我要发布消息时,我想创建一个附件。我按照下面的文档测试了api,但它不起作用!!
http://graph.microsoft.io/docs/api-reference/v1.0/api/post_post_attachments
我的 JavaScript 代码如下:
obj.createAttachment = function (groupId, threadId, postId) {
var d = $q.defer();
var s = Base64.encode("one drive");
HttpClient.post({
url: "https://graph.microsoft.com/v1.0/groups/" + groupId + "/threads/" + threadId + "/posts/" + postId + "/attachments",
data: {
"@odata.type": "#Microsoft.OutlookServices.FileAttachment",
"Name": "test_one_drive.txt",
"ContentType": "text/plain",
"IsInline": true,
"ContentLocation": "https://wiadvancetechology.sharepoint.com/sites/wiogroup85/Shared%20Documents/test%20one%20drive.txt",
"ContentBytes": s
}
}).then(function (response) {
d.resolve(response);
});
return d.promise;
};
但响应总是显示“405(不允许的方法)”。错误消息是“不支持 OData 请求”。
代码有问题吗?