指定したユーザーが追加されているリストを取得します。 user_id や screen_name を設定しなかった場合は、認証ユーザーが追加されているリストを取得します。
https://api.twitter.com/1.1/lists/memberships.json
user_id もしくはscreen_name は必ず設定してください。
結果を取得するユーザーのユーザーID。ユーザーIDとスクリーンネームが同じ場合に、どちらを指定しているのか明確にするために使います。
結果を取得するユーザーのスクリーンネーム。スクリーンネームとユーザーIDが同じ場合に、どちらを指定しているのか明確にするために使います。
1ページごとに取得する結果の数。既定値は20。1ページ当たりに1000件までの結果が取得できます。
検索結果を複数のページに分割します。 -1 を設定すると、最初のページからページングを開始します。
応答として返されてきたbody部内のnext_cursor属性とprevious_cursor属性を使って、リスト内の前後のページを操作します。
メソッドがcursorをサポートしている場合は、常にcursorを使用することを推奨します。詳細情報については Using cursors to navigate collections を参照してください。
trueか t か 1を設定した場合、
user_id や screen_nameで指定したユーザーが追加されている、認証ユーザーが所有するリストのみを取得します。
ログインして登録アプリケーションの一覧を参照してください。
GET
https://api.twitter.com/1.1/lists/memberships.json?screen_name=twitter&cursor=-1
{
"previous_cursor": 0,
"lists": [
{
"name": "Digital Marketing",
"slug": "digital-marketing",
"uri": "/pointcg/digital-marketing",
"id_str": "49260625",
"subscriber_count": 1,
"member_count": 46,
"mode": "public",
"id": 49260625,
"full_name": "@pointcg/digital-marketing",
"description": "",
"user": {
"profile_sidebar_border_color": "447DBC",
"profile_background_tile": false,
"profile_sidebar_fill_color": "447DBC",
"name": "Chris Greco",
"created_at": "Wed Feb 28 01:05:01 +0000 2007",
"location": "",
"profile_image_url": "http://a1.twimg.com/profile_images/1331628329/chris_2_normal.jpg",
"follow_request_sent": false,
"profile_link_color": "0000FF",
"is_translator": false,
"id_str": "799757",
"default_profile": false,
"favourites_count": 2,
"contributors_enabled": false,
"url": null,
"id": 799757,
"profile_image_url_https": "https://si0.twimg.com/profile_images/1331628329/chris_2_normal.jpg",
"utc_offset": -18000,
"profile_use_background_image": true,
"listed_count": 4,
"lang": "en",
"followers_count": 66,
"profile_text_color": "000000",
"protected": false,
"profile_background_color": "0F5B5F",
"verified": false,
"time_zone": "Eastern Time (US & Canada)",
"profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png",
"description": "",
"notifications": false,
"geo_enabled": false,
"statuses_count": 122,
"default_profile_image": false,
"friends_count": 80,
"profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png",
"following": false,
"screen_name": "pointcg",
"show_all_inline_media": false
},
"following": false
},
{
"name": "vanessa williams",
"slug": "vanessa-williams",
"uri": "/Barbis_doll/vanessa-williams",
"id_str": "49270287",
"subscriber_count": 0,
"member_count": 1,
"mode": "public",
"id": 49270287,
"full_name": "@Barbis_doll/vanessa-williams",
"description": "former ms. america, talented dancer, singer and actress",
"user": {
"profile_sidebar_border_color": "C0DEED",
"name": "Debbie M.",
"profile_background_tile": false,
"profile_sidebar_fill_color": "DDEEF6",
"location": null,
"profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png",
"created_at": "Tue Jun 28 00:50:43 +0000 2011",
"is_translator": false,
"profile_link_color": "0084B4",
"id_str": "325263705",
"follow_request_sent": null,
"url": null,
"favourites_count": 0,
"contributors_enabled": false,
"default_profile": true,
"utc_offset": null,
"id": 325263705,
"profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png",
"listed_count": 0,
"profile_use_background_image": true,
"protected": false,
"followers_count": 2,
"lang": "en",
"profile_text_color": "333333",
"time_zone": null,
"profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png",
"notifications": null,
"geo_enabled": false,
"description": null,
"profile_background_color": "C0DEED",
"verified": false,
"default_profile_image": true,
"friends_count": 11,
"statuses_count": 6,
"profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png",
"following": null,
"screen_name": "Barbis_doll",
"show_all_inline_media": false
},
"following": false
},
],
"previous_cursor_str": "0",
"next_cursor": 1373407125131783107,
"next_cursor_str": "1373407125131783107"
}