Microsoft Graph API:列表帖子附件API不起作用

时间:2015-12-09 06:45:55

标签: office365 microsoft-graph

我遵循了这个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) {

    });
};

代码中有什么问题吗?

1 个答案:

答案 0 :(得分:1)

您的代码是正确的,它是Graph API中的一个错误。正在推出一个修复程序,应该在大约一个月内广泛提供。