サイトのトップへ戻る

Twitter 開発者 ドキュメント日本語訳

GET lists/members

指定したリストのメンバーを取得します。非公開リストのメンバーについては、指定したリストの所有者がこのメソッドを実行した場合に表示されます。



リソースURL

https://api.twitter.com/1.1/lists/members.json



リソース情報

応答形式
JSON
認証は必要ですか?
はい
レート制限はありますか?
はい
リクエスト回数 / 15分 window (ユーザー認証の場合)
180
リクエスト回数 / 15分 window (アプリケーション認証の場合)
15


パラメータ

list_idslug のどちらかは必ず設定する必要があります。 list_slugを設定した場合は、 owner_screen_nameowner_id のどちらかも設定する必要があります。

list_id 必須

リストの数値型 id

slug 必須

数値型idではなく slug を使ってリストを識別することができます。もしslugを使用する場合は、owner_idパラメータや owner_screen_nameパラメータを使ってリストの所有者も指定しなければならないので注意してください。

owner_screen_name 任意

slugで指定したリストを所有するユーザーのスクリーンネーム。

owner_id 任意

slugで指定したリストを所有するユーザーのユーザーID。

count 任意

1ページごとに取得する結果の数(以下のcursor を参照してください)。既定値は20。最大で値は5000。

cursor 半任意

検索結果をcountで指定したサイズごとのページに分割します。cursor が設定されなかった場合、一番最初のページを表す -1 が設定されたと見なされます。

API からの応答には previous_cursor パラメータと next_cursorパラメータが含まれており、これを使って前後のページを操作できます。詳細情報についてはUsing cursors to navigate collectionsを参照してください。

サンプル値: 12893764510938

include_entities 任意

falseを設定した場合、entitiesノードは含まれません。

サンプル値: false

skip_status 任意

truet1を設定した場合、取得したユーザーオブジェクトにステータス情報は含まれません。



OAuth 署名ジェネレータ

ログイン して登録アプリケーションの一覧を参照してください。



リクエスト例

GET

https://api.twitter.com/1.1/lists/members.json?slug=team&owner_screen_name=twitterapi&cursor=-1



応答結果の例

{
  "previous_cursor": 0,
  "previous_cursor_str": "0",
  "next_cursor": 0,
  "users": [
    {
      "profile_sidebar_fill_color": "bedcfa",
      "expanded_url": null,
      "profile_sidebar_border_color": "85add6",
      "name": "Sharon Ly",
      "profile_background_tile": false,
      "location": "",
      "profile_image_url": "http://a2.twimg.com/profile_images/1359867172/image_normal.jpg",
      "created_at": "Sun May 25 00:29:44 +0000 2008",
      "follow_request_sent": null,
      "is_translator": false,
      "profile_link_color": "955ea6",
      "id_str": "14895163",
      "entities": {
        "urls": [

        ],
        "hashtags": [

        ],
        "user_mentions": [

        ]
      },
      "default_profile": false,
      "favourites_count": 63,
      "contributors_enabled": false,
      "url": null,
      "id": 14895163,
      "utc_offset": -28800,
      "profile_image_url_https": "https://si0.twimg.com/profile_images/1359867172/image_normal.jpg",
      "profile_use_background_image": true,
      "listed_count": 43,
      "lang": "en",
      "profile_text_color": "4c58a3",
      "followers_count": 784,
      "protected": false,
      "profile_background_color": "312040",
      "geo_enabled": true,
      "description": "",
      "time_zone": "Pacific Time (US & Canada)",
      "verified": false,
      "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/257176598/hydrangeas_94_68830.jpg",
      "notifications": null,
      "friends_count": 188,
      "statuses_count": 325,
      "profile_background_image_url": "http://a1.twimg.com/profile_background_images/257176598/hydrangeas_94_68830.jpg",
      "default_profile_image": false,
      "status": {
        "coordinates": null,
        "truncated": false,
        "created_at": "Tue Jul 05 03:46:03 +0000 2011",
        "favorited": false,
        "id_str": "88091240503058432",
        "in_reply_to_user_id_str": "748353",
        "contributors": null,
        "text": "@kmonkeyjam Oh no... I don't know where that bone is but that sounds terribly painful. How are you still tweeting? Get better!",
        "id": 88091240503058432,
        "retweet_count": 0,
        "in_reply_to_status_id_str": "87979906226597888",
        "geo": null,
        "retweeted": false,
        "in_reply_to_user_id": 748353,
        "source": "Twitter for iPhone",
        "in_reply_to_screen_name": "kmonkeyjam",
        "place": null,
        "in_reply_to_status_id": 87979906226597888
      },
      "display_url": null,
      "screen_name": "onesnowclimber",
      "show_all_inline_media": true,
      "following": null
    }
  ],
  "next_cursor_str": "0"
}