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/entries/:entry_id 詳細
XMLHttpRequest: XMLHttpRequestオブジェクト
api.getEntry(siteId, entryId, function(response) { if (response.error) { // エラー処理 return; } // レスポンスデータを使った処理 });
Or
api.getEntry(siteId, entryId, {fields: "title,permalink,date"}, function(response) { if (response.error) { // エラー処理 return; } // レスポンスデータを使った処理 });