We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
指定したユーザーが権限を持っているブログの一覧を取得します
GET https://your-host/your-mt-api.cgi/v1/users/:user_id/sites 詳細
XMLHttpRequest: XMLHttpRequestオブジェクト
api.listBlogsForUser(userId, function(response) { if (response.error) { // エラー処理 return; } // レスポンスデータを使った処理 });
Or
var params = { includeIds: "1,2,3,4", fields: "name,description,url,archiveUrl" }; api.listBlogsForUser(userId, params, function(response) { if (response.error) { // エラー処理 return; } // レスポンスデータを使った処理 });