0

メッセージを投稿するときに添付ファイルを作成したいと思います。以下のドキュメントに従って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 要求はサポートされていません」です。

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

4

1 に答える 1