Skip to content

DataAPI SDK japanese MT.DataAPI Endpoint method getComment

Taku AMANO edited this page Aug 28, 2013 · 9 revisions

getComment

コメントのデータを取得します

GET https://your-host/your-mt-api.cgi/v1/sites/:site_id/comments/:comment_id 詳細

パラメータ

パラメータ名 タイプ 必須 説明
siteId Number | Object | Function * ブログID
commentId Number | Object | Function * コメントID
params Object オプション
callback Function

戻り値

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;
  }

  // レスポンスデータを使った処理
});
Clone this wiki locally