我遵循了这个document并编写了如下代码,但它响应405(方法不允许),错误消息是"不支持OData请求。"。
function getAttachment(groupId, threadId, postId) {
HttpClient.get({
url: "https://graph.microsoft.com/v1.0/groups/" + groupId + "/threads/" + threadId + "/posts/" + postId + "/attachments"
}).then(function (resp) {
});
};
代码中有什么问题吗?
答案 0 :(得分:1)
您的代码是正确的,它是Graph API中的一个错误。正在推出一个修复程序,应该在大约一个月内广泛提供。