指定したリストを購読します。
| POST lists/ | 
https://api.twitter.com/1.1/lists/subscribers/create.json
| Resource URL
 | 
| Resource Information
Response formats
 
JSON
 
Requires authentication?
 
Yes
 
Rate limited?
 
Yes
 | 
list_id か slug のどちらかは必ず設定する必要があります。list_slugを設定した場合は、 owner_screen_name か owner_id も設定する必要があります。
slugで指定したリストを所有するユーザーのスクリーンネーム。
slugで指定したリストを所有するユーザーのユーザーID。
リストの数値型 id 。
数値型idではなく slug を使ってリストを識別することができます。もしslugを使用する場合は、 owner_idパラメータや owner_screen_nameパラメータを使ってリストの所有者も指定しなければならないので注意してください。
| ParametersEither a  
owner_screen_name 
optional
 The screen name of the user who owns the list being requested by a  
owner_id 
optional
 The user ID of the user who owns the list being requested by a  
list_id 
required
 The numerical  
slug 
required<
/span>
 You can identify a list by its slug instead of its numerical id. If you decide to do so, note that you’ll also have to specify the list owner using the  | 
ログインして登録アプリケーションの一覧を参照してください。
| OAuth Signature GeneratorSign in to see a list of your registered applications. | 
POST 
https://api.twitter.com/1.1/lists/subscribers/create.json?slug=team&owner_screen_name=twitter
	
	| Example RequestPOST 
 | 
{
   "created_at":"Wed Sep 23 01:18:01 +0000 2009",
   "slug":"team",
   "name":"Team",
   "full_name":"@twitter\/team",
   "description":"",
   "mode":"public",
   "following":false,
   "user":{
      "geo_enabled":true,
      "profile_background_color":"ACDED6",
      "protected":false,
      "profile_background_tile":false,
      "created_at":"Tue Feb 20 14:35:54 +0000 2007",
      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1124040897\/at-twitter_normal.png",
      "name":"Twitter",
      "favourites_count":16,
      "profile_sidebar_fill_color":"F6F6F6",
      "default_profile_image":false,
      "notifications":false,
      "utc_offset":-28800,
      "description":"Always wondering what's happening. ",
      "display_url":null,
      "deactivated_bit":false,
      "statuses_count":1218,
      "following":false,
      "verified":true,
      "profile_sidebar_border_color":"EEEEEE",
      "followers_count":6619949,
      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1124040897\/at-twitter_normal.png",
      "contributors_enabled":true,
      "follow_request_sent":false,
      "profile_use_background_image":true,
      "location":"San Francisco, CA",
      "id_str":"783214",
      "is_translator":false,
      "show_all_inline_media":true,
      "profile_text_color":"333333",
      "screen_name":"twitter",
      "profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme18\/bg.gif",
      "url":"http:\/\/blog.twitter.com\/",
      "expanded_url":null,
      "default_profile":false,
      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme18\/bg.gif",
      "time_zone":"Pacific Time (US & Canada)",
      "profile_link_color":"038543",
      "id":783214,
      "entities":{
         "urls":[
         ],
         "user_mentions":[
         ],
         "hashtags":[
         ]
      },
      "suspended":false,
      "listed_count":66018,
      "lang":"en",
      "friends_count":695
   },
   "member_count":643,
   "id_str":"574",
   "subscriber_count":76779,
   "id":574,
   "uri":"\/twitter\/team"
}
	
	| Example Result
{
   "created_at":"Wed Sep 23 01:18:01 +0000 2009",
   "slug":"team",
   "name":"Team",
   "full_name":"@twitter\/team",
   "description":"",
   "mode":"public",
   "following":false,
   "user":{
      "geo_enabled":true,
      "profile_background_color":"ACDED6",
      "protected":false,
      "profile_background_tile":false,
      "created_at":"Tue Feb 20 14:35:54 +0000 2007",
      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1124040897\/at-twitter_normal.png",
      "name":"Twitter",
      "favourites_count":16,
      "profile_sidebar_fill_color":"F6F6F6",
      "default_profile_image":false,
      "notifications":false,
      "utc_offset":-28800,
      "description":"Always wondering what's happening. ",
      "display_url":null,
      "deactivated_bit":false,
      "statuses_count":1218,
      "following":false,
      "verified":true,
      "profile_sidebar_border_color":"EEEEEE",
      "followers_count":6619949,
      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1124040897\/at-twitter_normal.png",
      "contributors_enabled":true,
      "follow_request_sent":false,
      "profile_use_background_image":true,
      "location":"San Francisco, CA",
      "id_str":"783214",
      "is_translator":false,
      "show_all_inline_media":true,
      "profile_text_color":"333333",
      "screen_name":"twitter",
      "profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme18\/bg.gif",
      "url":"http:\/\/blog.twitter.com\/",
      "expanded_url":null,
      "default_profile":false,
      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme18\/bg.gif",
      "time_zone":"Pacific Time (US & Canada)",
      "profile_link_color":"038543",
      "id":783214,
      "entities":{
         "urls":[
         ],
         "user_mentions":[
         ],
         "hashtags":[
         ]
      },
      "suspended":false,
      "listed_count":66018,
      "lang":"en",
      "friends_count":695
   },
   "member_count":643,
   "id_str":"574",
   "subscriber_count":76779,
   "id":574,
   "uri":"\/twitter\/team"
}
 |