0

このドキュメントに従って以下のようなコードを書いたのですが、405(メソッドは許可されていません)、エラーメッセージは「The OData request is not supported.」です。

function getAttachment(groupId, threadId, postId) {
    HttpClient.get({
        url: "https://graph.microsoft.com/v1.0/groups/" + groupId + "/threads/" + threadId + "/posts/" + postId + "/attachments"
    }).then(function (resp) {

    });
};

コードに何か問題がありますか?

4

1 に答える 1