We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
コメントのデータを取得します
GET https://your-host/your-mt-api.cgi/v1/sites/:site_id/comments/:comment_id 詳細
XMLHttpRequest: XMLHttpRequestオブジェクト
api.getComment(siteId, commentId, function(response) { if (response.error) { // エラー処理 return; } // レスポンスデータを使った処理 });
Or
api.getComment(siteId, commentId, {fields: "date,body,parent"}, function(response) { if (response.error) { // エラー処理 return; } // レスポンスデータを使った処理 });