1

D2L API を使用していますが、いくつかの POST リクエストで問題が発生しています。

JSON オブジェクトを使用してバージョン チェック (POST) を実行します。

[{ "ProductCode": "lp", "Version": "1.0" }]

正しく返され、応答で有効な JSON オブジェクトが提供されます。呼び出しを発行するコードが正しく機能していると確信しています。

しかし、フォーラムで投稿を作成するために POST を発行すると、応答で 404 が返されます。この呼び出しで送信する JSON オブジェクトは次のとおりです。

[
 {
 "ParentPostId": null,
 "Subject": "API Posted",
 "Message": {
   "Text": "This message has been posted by the API",
   "HTML": "This message has been posted by the API"
   },
 "IsAnonymous": false
 }
]

そして、提出されたURLは/d2l/api/le/{ver}/{orgId}/discussions/forums/{forumId}/topics/{topicId}/posts/

同じフォーラムとトピックの投稿の GET を使用して、ver/orgId/forumId/topicId がすべて有効であることを確認しました。また、ParentPostId と IsAnonymous の値を別々に、またはまとめて引用してみました。

4

2 に答える 2

1

http://docs.valence.desire2learn.com/res/discuss.html#post--d2l-api-le-(D2LVERSION-version)-(D2LID-orgUnitId)-discussions-forumsでそのルートのドキュメントを見る-(D2LID-forumId)-topics-(D2LID-topicId)-posts-、必要なデータ構造がforではなくを使用しているようRichTextInputです。RichTextMessage

Messageフィールドを次のように変更してみてください。

{
   "Content": "This message has been posted by the API",
   "Type": "Text"
}
于 2012-07-26T18:25:19.863 に答える
1

JSON から角かっこを削除してみてください。

成功した要求と応答の例を次に示します。

REQUEST  

POST https://valence.desire2learn.com/d2l/api/le/1.0/7664/discussions/forums/203/topics/508/posts/?x_b=TwULqrltMXvTE8utuLCN5O&x_a=L2Hd9WvDTcyiyu5n2AEgpg&x_d=nF61tBeuzd0EPTW7nm8iGc4MB7NeJZaNM2VlzHp0bwU&x_c=I3i_k2aANTIf2X6aFsiOdvlElSR_avvOYnA2ibcWabA&x_t=1343335429 HTTP/1.1
Accept-Encoding: gzip,deflate
Accept: application/json
Content-Type: application/json

 { "ParentPostId": null, "Subject": "API Posted", "Message": { "Content": "This message has been posted by the API", "Type": "HTML" }, "IsAnonymous": false } 


RESPONSE

HTTP/1.1 200 OK
Cache-Control: no-cache, no-store
Pragma: no-cache
Content-Length: 369
Content-Type: application/json; charset=UTF-8
Expires: -1
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 2.0.50727
Date: Thu, 26 Jul 2012 20:43:58 GMT

{"ForumId":203,"PostId":574,"TopicId":508,"PostingUserId":3667,"ThreadId":205,"ParentPostId":null,"Message":{"Text":"","Html":"This message has been posted by the API"},"Subject":"API Posted","DatePosted":"2012-07-26T20:43:58.920Z","IsAnonymous":false,"RequiresApproval":false,"IsDeleted":false,"LastEditDate":null,"LastEditedBy":null,"CanRate":false,"ReplyPostIds":[]}
于 2012-07-26T20:49:00.393 に答える