Twitter関連Twitter REST API:リスト関連
- lists/create〔認証ユーザーの新しいリストを作成(要認証)〕
- lists/update〔認証ユーザーの特定のリストを更新(要認証)〕
- lists〔特定のユーザーのリスト一覧を取得(認証不要)〕
- lists/show〔特定のリストを取得(認証不要)〕
- lists/destroy〔認証ユーザーのリストから特定のリストを削除(要認証)〕
- lists/statuses〔特定リストに所属するメンバーのつぶやきタイムラインを取得(認証不要)〕
- lists/memberships〔特定のユーザーが追加されているリスト一覧を取得(認証不要)〕
- lists/subscriptions〔指定されたユーザがフォローしているリスト一覧を取得(認証不要)〕
lists/create
認証ユーザーの新しいリストを作成(要認証)
2009/7/18
http://api.twitter.com/1/lists/create.[xml|json]
認証ユーザーのリストで、「name」パラメータに指定したリストを新規に作成します。 リストは、1アカウントにつき最大20件まで作成できます。
※「name」パラメータに、既存のリスト名を指定した場合は、「***-10」のように連番が自動的にふられエラーにはなりません。
パラメーター
パラメーター | 説明 | |
---|---|---|
name | 必須 |
新しく作成するリストの名前を指定します。 例)http://api.twitter.com/1/lists/create.xml?name=%E6%B0%97%E3%81%AB%E3%81%AA%E3%82%8B%E4%BA%BA |
mode | 任意 |
新しく作成するリストを公開「public」するか非公開「private」にするかをで指定します。
省略した場合はデフォルトの「public」が適用されます。 例)http://api.twitter.com/1/lists/create.xml?mode=private |
description | 任意 |
新しく作成するリストの説明を指定します。 例)http://api.twitter.com/1/lists/create.xml?description=%E8%AA%AC%E6%98%8E |
取得サンプル(XML/JSON)
create.xml
<?xml version="1.0" encoding="UTF-8"?> <list> <id>45913590</id> <name>気になる人</name> <full_name>@pjroomer/気になる人</full_name> <slug>気になる人</slug> <description></description> <subscriber_count>0</subscriber_count> <member_count>0</member_count> <uri>/pjroomer/気になる人</uri> <following>false</following> <mode>public</mode> <user> <id>55984769</id> <name>PJRPJRPJRPJRPJRPJRPJ</name> <screen_name>pjroomer</screen_name> <location>とうきょう</location> <description>いやんばか。</description> <profile_image_url>http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png</profile_image_url> <url>http://www.hoge.com/ajierjaowejraojioejr#abut</url> <protected>false</protected> <followers_count>9</followers_count> <profile_background_color>C0DEED</profile_background_color> <profile_text_color>333333</profile_text_color> <profile_link_color>0084B4</profile_link_color> <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color> <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color> <friends_count>190</friends_count> <created_at>Sun Jul 12 01:37:21 +0000 2009</created_at> <favourites_count>99</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a0.twimg.com/images/themes/theme1/bg.png</profile_background_image_url> <profile_background_tile>false</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>true</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>1424</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>4</listed_count> <show_all_inline_media>false</show_all_inline_media> <default_profile>true</default_profile> <default_profile_image>true</default_profile_image> <is_translator>false</is_translator> </user> </list>
create.json
json[mode]=public json[description]= json[member_count]=0 json[following]= json[subscriber_count]=0 json[id_str]=45913633 json[slug]=気になる人-10 json[full_name]=@pjroomer/気になる人-10 json[name]=気になる人 json[user]['lang']=ja json[user]['default_profile_image']=1 json[user]['verified']= json[user]['profile_link_color']=0084B4 json[user]['description']=いやんばか。 json[user]['location']=とうきょう json[user]['friends_count']=190 json[user]['profile_sidebar_border_color']=C0DEED json[user]['followers_count']=9 json[user]['time_zone']=Tokyo json[user]['url']=http://www.hoge.com/ajierjaowejraojioejr#abut json[user]['follow_request_sent']= json[user]['profile_use_background_image']=1 json[user]['favourites_count']=99 json[user]['is_translator']= json[user]['following']= json[user]['notifications']= json[user]['created_at']=Sun Jul 12 01:37:21 +0000 2009 json[user]['profile_background_color']=C0DEED json[user]['default_profile']=1 json[user]['show_all_inline_media']= json[user]['geo_enabled']=1 json[user]['profile_background_image_url']=http://a0.twimg.com/images/themes/theme1/bg.png json[user]['protected']= json[user]['profile_image_url']=http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png json[user]['id_str']=55984769 json[user]['listed_count']=4 json[user]['profile_text_color']=333333 json[user]['name']=PJRPJRPJRPJRPJRPJRPJ json[user]['statuses_count']=1424 json[user]['profile_sidebar_fill_color']=DDEEF6 json[user]['screen_name']=pjroomer json[user]['id']=55984769 json[user]['contributors_enabled']= json[user]['profile_background_tile']= json[user]['utc_offset']=32400 json[uri]=/pjroomer/気になる人-10 json[id]=45913633
lists/update
認証ユーザーの特定のリストを更新(要認証)
2009/7/18
http://api.twitter.com/1/lists/update.[xml|json]?list_id=[リストID]
認証ユーザーのリストで、「name」パラメータに指定したリストを更新し、更新後のリスト情報を返します。 このメソッドでは、リストの公開/非公開の設定、説明文の更新が可能です。
パラメーター
パラメーター | 説明 | |
---|---|---|
name | 必須 | 更新するリストの名前を指定します。 例)http://api.twitter.com/1/lists/update.xml?list_id=5466220198 |
slug | 必須 |
リストIDでなく、slugを使う場合は、owner_idまたはowner_nameを使用して、リストの所有者も指定する必要があります。 例)http://api.twitter.com/1/lists/update.xml?slug=team&owner_screen_name=twitterapi 例)http://api.twitter.com/1/lists/update.xml?slug=team&owner_id=6253282 |
mode | 任意 | 更新するリストを公開「public」するか非公開「private」にするかをで指定します。省略した場合はデフォルトの「public」が適用されます。 例)http://api.twitter.com/1/lists/update.xml?mode=private |
description | 任意 | 更新するリストの説明を指定します。 例)http://api.twitter.com/1/lists/update.xml?description=%E8%AA%AC%E6%98%8E |
取得サンプル(XML/JSON)
リストID「45913590」の説明文を「Twitterできになった方々のタイムライン」を更新。
http://api.twitter.com/1/lists/update.json ?list_id=45913590 &description=Twitter%E3%81%A7%E6%B0%97%E3%81%AB%E3%81%AA%E3%81%A3%E3%81%9F%E6%96%B9% E3%80%85%E3%81%AE%E3%82%BF%E3%82%A4%E3%83%A0%E3%83%A9%E3%82%A4%E3%83%B3%E3%80%82
update.xml
<?xml version="1.0" encoding="UTF-8"?> <list> <id>45913590</id> <name>気になる人</name> <full_name>@pjroomer/気になる人</full_name> <slug>気になる人</slug> <description>Twitterで気になった方々のタイムライン。</description> <subscriber_count>0</subscriber_count> <member_count>0</member_count> <uri>/pjroomer/気になる人</uri> <following>false</following> <mode>public</mode> <user> <id>55984769</id> <name>PJRPJRPJRPJRPJRPJRPJ</name> <screen_name>pjroomer</screen_name> <location>とうきょう</location> <description>いやんばか。</description> <profile_image_url>http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png</profile_image_url> <url>http://www.hoge.com/ajierjaowejraojioejr#abut</url> <protected>false</protected> <followers_count>9</followers_count> <profile_background_color>C0DEED</profile_background_color> <profile_text_color>333333</profile_text_color> <profile_link_color>0084B4</profile_link_color> <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color> <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color> <friends_count>190</friends_count> <created_at>Sun Jul 12 01:37:21 +0000 2009</created_at> <favourites_count>99</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a0.twimg.com/images/themes/theme1/bg.png</profile_background_image_url> <profile_background_tile>false</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>true</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>1424</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>4</listed_count> <show_all_inline_media>false</show_all_inline_media> <default_profile>true</default_profile> <default_profile_image>true</default_profile_image> <is_translator>false</is_translator> </user> </list>
update.json
json[mode]=public json[description]=Twitterで気になった方々のタイムライン。 json[member_count]=0 json[following]= json[subscriber_count]=0 json[id_str]=45913590 json[slug]=気になる人 json[full_name]=@pjroomer/気になる人 json[name]=気になる人 json[user]['default_profile_image']=1 json[user]['contributors_enabled']= json[user]['lang']=ja json[user]['show_all_inline_media']= json[user]['verified']= json[user]['geo_enabled']=1 json[user]['profile_link_color']=0084B4 json[user]['description']=いやんばか。 json[user]['location']=とうきょう json[user]['profile_sidebar_border_color']=C0DEED json[user]['followers_count']=9 json[user]['follow_request_sent']= json[user]['time_zone']=Tokyo json[user]['friends_count']=190 json[user]['url']=http://www.hoge.com/ajierjaowejraojioejr#abut json[user]['is_translator']= json[user]['statuses_count']=1424 json[user]['profile_use_background_image']=1 json[user]['favourites_count']=99 json[user]['following']= json[user]['notifications']= json[user]['created_at']=Sun Jul 12 01:37:21 +0000 2009 json[user]['profile_background_color']=C0DEED json[user]['profile_background_image_url']=http://a0.twimg.com/images/themes/theme1/bg.png json[user]['default_profile']=1 json[user]['listed_count']=4 json[user]['protected']= json[user]['profile_image_url']=http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png json[user]['id_str']=55984769 json[user]['profile_text_color']=333333 json[user]['name']=PJRPJRPJRPJRPJRPJRPJ json[user]['profile_sidebar_fill_color']=DDEEF6 json[user]['screen_name']=pjroomer json[user]['id']=55984769 json[user]['profile_background_tile']= json[user]['utc_offset']=32400 json[uri]=/pjroomer/気になる人 json[id]=45913590
lists
特定のユーザーのリスト一覧を取得(認証不要)
2009/7/18
http://api.twitter.com/1/lists.[xml|json]?user_id=[ユーザID]
指定したユーザーが作成したリスト一覧を取得します。
非公開リストの場合は、認証ユーザーが含まれているリストであれば結果に含まれます。
パラメーター
パラメーター | 説明 | |
---|---|---|
user_id | 必須 |
ユーザーIDを指定。有効なユーザーIDを明確に指定したい場合に使用。 例)http://api.twitter.com/1/lists.xml?user_id=12345 |
screen_name | 必須 |
スクリーンネームを指定。ユーザーIDとスクリーンネームが数値で紛らわしい場合に有用。 例)http://api.twitter.com/1/lists.xml?screen_name=cocoism |
cursor | 任意 | 結果をページ分けを指定します。1ページあたり20リストが含まれます。
ページの始まりには「-1」を指定します。前後ページは、取得したデータの中にあるnext_cursorまたはprevious_cursor属性で参照できます。 例)http://api.twitter.com/1/twitterapidocs/lists.xml?cursor=-1 例)http://api.twitter.com/1/twitterapidocs/lists.xml?cursor=-1300794057949944903 |
取得サンプル(XML/JSON)
lists.xml
<?xml version="1.0" encoding="UTF-8"?> <lists_list> <lists type="array"> <list> <id>43044556</id> <name>lifeline</name> <full_name>@cocoism/lifeline</full_name> <slug>lifeline</slug> <description>ライフラインに関する情報を発信しているアカウント。</description> <subscriber_count>0</subscriber_count> <member_count>6</member_count> <uri>/cocoism/lifeline</uri> <following>false</following> <mode>public</mode> <user> <id>7948862</id> <name>つんつ</name> <screen_name>cocoism</screen_name> <location>カワタマ or オモサン</location> <description>青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。</description> <profile_image_url>http://a0.twimg.com/profile_images/1202496271/usa_normal.png</profile_image_url> <url>http://phpjavascriptroom.com/</url> <protected>false</protected> <followers_count>595</followers_count> <profile_background_color>8350a1</profile_background_color> <profile_text_color>f2afcf</profile_text_color> <profile_link_color>f2afcf</profile_link_color> <profile_sidebar_fill_color>8350a1</profile_sidebar_fill_color> <profile_sidebar_border_color>8350a1</profile_sidebar_border_color> <friends_count>512</friends_count> <created_at>Sat Aug 04 05:52:33 +0000 2007</created_at> <favourites_count>431</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a2.twimg.com/profile_background_images/187449144/02.png</profile_background_image_url> <profile_background_tile>true</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>true</notifications> <geo_enabled>true</geo_enabled> <verified>false</verified> <following>true</following> <statuses_count>4824</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>51</listed_count> <show_all_inline_media>true</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> </list> </lists> <next_cursor>0</next_cursor> <previous_cursor>0</previous_cursor> </lists_list>
lists.json
json['lists'][0]['mode']=public json['lists'][0]['following']= json['lists'][0]['description']=ライフラインに関する情報を発信しているアカウント。 json['lists'][0]['id_str']=43044556 json['lists'][0]['slug']=lifeline json['lists'][0]['uri']=/cocoism/lifeline json['lists'][0]['member_count']=6 json['lists'][0]['subscriber_count']=0 json['lists'][0]['full_name']=@cocoism/lifeline json['lists'][0]['name']=lifeline json['lists'][0]['user']['is_translator']= json['lists'][0]['user']['profile_background_image_url']=http://a2.twimg.com/profile_background_images/187449144/02.png json['lists'][0]['user']['listed_count']=51 json['lists'][0]['user']['contributors_enabled']= json['lists'][0]['user']['following']= json['lists'][0]['user']['profile_image_url']=http://a0.twimg.com/profile_images/1202496271/usa_normal.png json['lists'][0]['user']['description']=青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。 json['lists'][0]['user']['id_str']=7948862 json['lists'][0]['user']['default_profile']= json['lists'][0]['user']['profile_text_color']=f2afcf json['lists'][0]['user']['followers_count']=595 json['lists'][0]['user']['verified']= json['lists'][0]['user']['profile_sidebar_fill_color']=8350a1 json['lists'][0]['user']['screen_name']=cocoism json['lists'][0]['user']['profile_background_tile']=1 json['lists'][0]['user']['default_profile_image']= json['lists'][0]['user']['show_all_inline_media']=1 json['lists'][0]['user']['geo_enabled']=1 json['lists'][0]['user']['time_zone']=Tokyo json['lists'][0]['user']['profile_link_color']=f2afcf json['lists'][0]['user']['location']=カワタマ or オモサン json['lists'][0]['user']['lang']=ja json['lists'][0]['user']['profile_sidebar_border_color']=8350a1 json['lists'][0]['user']['protected']= json['lists'][0]['user']['follow_request_sent']= json['lists'][0]['user']['friends_count']=512 json['lists'][0]['user']['url']=http://phpjavascriptroom.com/ json['lists'][0]['user']['name']=つんつ json['lists'][0]['user']['statuses_count']=4824 json['lists'][0]['user']['profile_use_background_image']=1 json['lists'][0]['user']['id']=7948862 json['lists'][0]['user']['notifications']= json['lists'][0]['user']['utc_offset']=32400 json['lists'][0]['user']['favourites_count']=431 json['lists'][0]['user']['created_at']=Sat Aug 04 05:52:33 +0000 2007 json['lists'][0]['user']['profile_background_color']=8350a1 json['lists'][0]['id']=43044556 json['next_cursor']=0 json['previous_cursor']=0 json['next_cursor_str']=0 json['previous_cursor_str']=0
設置サンプル
スクリーンネーム「cocoism」の作成したリスト情報を取得します。
設置サンプルサンプルを見る
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="Content-Language" content="ja" /> <meta http-equiv="Content-Script-Type" content="text/javascript" /> <meta http-equiv="Content-Style-Type" content="text/css" /> <meta http-equiv="imagetoolbar" content="no" /> <title>Twitter REST API:リスト関連:GET lists(特定のユーザーのリスト一覧を取得) | 設置サンプル</title> <link rel="stylesheet" type="text/css" href="/content/lib/global.css" /> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script> <script type="text/javascript" src="/content/lib/jquery/jquery.jsonp.js"></script> <!-- JS --> <script type="text/javascript"> $(function(){ var url="http://api.twitter.com/1/lists.json?screen_name=pjroomer&callback={callback}"; $.getJSONP(url, function(json){ var s=""; $.each(json.lists, function(i, item){ s+="<li>json.lists[i].mode = "+json.lists[i].mode+"</li>"; s+="<li>json.lists[i].following = "+json.lists[i].following+"</li>"; s+="<li>json.lists[i].description = "+json.lists[i].description+"</li>"; s+="<li>json.lists[i].id_str = "+json.lists[i].id_str+"</li>"; s+="<li>json.lists[i].slug = "+json.lists[i].slug+"</li>"; s+="<li>json.lists[i].uri = "+json.lists[i].uri+"</li>"; s+="<li>json.lists[i].member_count = "+json.lists[i].member_count+"</li>"; s+="<li>json.lists[i].subscriber_count = "+json.lists[i].subscriber_count+"</li>"; s+="<li>json.lists[i].full_name = "+json.lists[i].full_name+"</li>"; s+="<li>json.lists[i].name = "+json.lists[i].name+"</li>"; s+="<li>json.lists[i].id = "+json.lists[i].id+"</li>"; s+="<li>json.lists[i].user"; s+="<ul>"; s+="<li>json.lists[i].user.is_translator = "+json.lists[i].user.is_translator+"</li>"; s+="<li>json.lists[i].user.profile_background_image_url = "+json.lists[i].user.profile_background_image_url+"</li>"; s+="<li>json.lists[i].user.listed_count = "+json.lists[i].user.listed_count+"</li>"; s+="<li>json.lists[i].user.contributors_enabled = "+json.lists[i].user.contributors_enabled+"</li>"; s+="<li>json.lists[i].user.following = "+json.lists[i].user.following+"</li>"; s+="<li>json.lists[i].user.profile_image_url = "+json.lists[i].user.profile_image_url+"</li>"; s+="<li>json.lists[i].user.description = "+json.lists[i].user.description+"</li>"; s+="<li>json.lists[i].user.id_str = "+json.lists[i].user.id_str+"</li>"; s+="<li>json.lists[i].user.default_profile = "+json.lists[i].user.default_profile+"</li>"; s+="<li>json.lists[i].user.profile_text_color = "+json.lists[i].user.profile_text_color+"</li>"; s+="<li>json.lists[i].user.followers_count = "+json.lists[i].user.followers_count+"</li>"; s+="<li>json.lists[i].user.profile_sidebar_fill_color = "+json.lists[i].user.profile_sidebar_fill_color+"</li>"; s+="<li>json.lists[i].user.screen_name = "+json.lists[i].user.screen_name+"</li>"; s+="<li>json.lists[i].user.profile_background_tile = "+json.lists[i].user.profile_background_tile+"</li>"; s+="<li>json.lists[i].user.default_profile_image = "+json.lists[i].user.default_profile_image+"</li>"; s+="<li>json.lists[i].user.show_all_inline_media = "+json.lists[i].user.show_all_inline_media+"</li>"; s+="<li>json.lists[i].user.geo_enabled = "+json.lists[i].user.geo_enabled+"</li>"; s+="<li>json.lists[i].user.time_zone = "+json.lists[i].user.time_zone+"</li>"; s+="<li>json.lists[i].user.profile_link_color = "+json.lists[i].user.profile_link_color+"</li>"; s+="<li>json.lists[i].user.location = "+json.lists[i].user.location+"</li>"; s+="<li>json.lists[i].user.lang = "+json.lists[i].user.lang+"</li>"; s+="<li>json.lists[i].user.profile_sidebar_border_color = "+json.lists[i].user.profile_sidebar_border_color+"</li>"; s+="<li>json.lists[i].user.protected = "+json.lists[i].user.protected+"</li>"; s+="<li>json.lists[i].user.follow_request_sent = "+json.lists[i].user.follow_request_sent+"</li>"; s+="<li>json.lists[i].user.friends_count = "+json.lists[i].user.friends_count+"</li>"; s+="<li>json.lists[i].user.url = "+json.lists[i].user.url+"</li>"; s+="<li>json.lists[i].user.name = "+json.lists[i].user.name+"</li>"; s+="<li>json.lists[i].user.statuses_count = "+json.lists[i].user.statuses_count+"</li>"; s+="<li>json.lists[i].user.profile_use_background_image = "+json.lists[i].user.profile_use_background_image+"</li>"; s+="<li>json.lists[i].user.id = "+json.lists[i].user.id+"</li>"; s+="<li>json.lists[i].user.notifications = "+json.lists[i].user.notifications+"</li>"; s+="<li>json.lists[i].user.utc_offset = "+json.lists[i].user.utc_offset+"</li>"; s+="<li>json.lists[i].user.favourites_count = "+json.lists[i].user.favourites_count+"</li>"; s+="<li>json.lists[i].user.created_at = "+json.lists[i].user.created_at+"</li>"; s+="<li>json.lists[i].user.profile_background_color = "+json.lists[i].user.profile_background_color+"</li>"; s+="</ul>"; s+="</li>"; s+="<li>json.next_cursor = "+json.next_cursor+"</li>"; s+="<li>json.previous_cursor = "+json.previous_cursor+"</li>"; s+="<li>json.next_cursor_str = "+json.next_cursor_str+"</li>"; s+="<li>json.previous_cursor_str = "+json.previous_cursor_str+"</li>"; }); $("#recent").html("<ul>"+s+"</ul>"); }); }); </script> </head> <body> <div id="wrap"> <h1>Twitter REST API:リスト関連:GET lists(特定のユーザーのリスト一覧を取得)| 設置サンプル</h1> <p>スクリーンネーム「cocoism」の作成したリスト情報を取得します。このAPIは認証不要です。</p> <!-- CODE --> <div id="recent"></div> <!-- / CODE --> </div> </body> </html>
lists/show
特定のリストを取得(認証不要)
2009/7/18
http://api.twitter.com/1/lists/show.[xml|json]
特定のリストを取得します。 非公開リストの場合は、認証ユーザー自身の特定リストのみ取得します。
パラメーター
パラメーター | 説明 | |
---|---|---|
list_id | 必須 |
取得するリストIDを指定します。 例)http://api.twitter.com/1/lists/show.xml?list_id=43044556 |
slug | 必須 |
リストIDでなく、slugを使う場合は、owner_idまたはowner_nameを使用して、リストの所有者も指定する必要があります。 例)http://api.twitter.com/1/lists/show.xml?slug=team&owner_screen_name=twitterapi 例)http://api.twitter.com/1/lists/show.xml?slug=team&owner_id=6253282 |
取得サンプル(XML/JSON)
show.xml
<?xml version="1.0" encoding="UTF-8"?> <list> <id>43044556</id> <name>lifeline</name> <full_name>@cocoism/lifeline</full_name> <slug>lifeline</slug> <description>ライフラインに関する情報を発信しているアカウント。</description> <subscriber_count>0</subscriber_count> <member_count>6</member_count> <uri>/cocoism/lifeline</uri> <following>false</following> <mode>public</mode> <user> <id>7948862</id> <name>つんつ</name> <screen_name>cocoism</screen_name> <location>カワタマ or オモサン</location> <description>青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。</description> <profile_image_url>http://a0.twimg.com/profile_images/1202496271/usa_normal.png</profile_image_url> <url>http://phpjavascriptroom.com/</url> <protected>false</protected> <followers_count>614</followers_count> <profile_background_color>8350a1</profile_background_color> <profile_text_color>f2afcf</profile_text_color> <profile_link_color>f2afcf</profile_link_color> <profile_sidebar_fill_color>8350a1</profile_sidebar_fill_color> <profile_sidebar_border_color>8350a1</profile_sidebar_border_color> <friends_count>527</friends_count> <created_at>Sat Aug 04 05:52:33 +0000 2007</created_at> <favourites_count>440</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a1.twimg.com/profile_background_images/187449144/02.png</profile_background_image_url> <profile_background_tile>true</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>true</notifications> <geo_enabled>true</geo_enabled> <verified>false</verified> <following>true</following> <statuses_count>4976</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>51</listed_count> <show_all_inline_media>true</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> </list>
show.json
json[mode]=public json[description]=ライフラインに関する情報を発信しているアカウント。 json[member_count]=6 json[following]= json[subscriber_count]=0 json[id_str]=43044556 json[slug]=lifeline json[full_name]=@cocoism/lifeline json[name]=lifeline json[user]['default_profile']= json[user]['follow_request_sent']= json[user]['lang']=ja json[user]['friends_count']=527 json[user]['verified']= json[user]['profile_link_color']=f2afcf json[user]['description']=青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。 json[user]['location']=カワタマ or オモサン json[user]['show_all_inline_media']=1 json[user]['geo_enabled']=1 json[user]['profile_sidebar_border_color']=8350a1 json[user]['followers_count']=614 json[user]['time_zone']=Tokyo json[user]['url']=http://phpjavascriptroom.com/ json[user]['listed_count']=51 json[user]['profile_use_background_image']=1 json[user]['favourites_count']=440 json[user]['contributors_enabled']= json[user]['statuses_count']=4976 json[user]['following']= json[user]['notifications']= json[user]['created_at']=Sat Aug 04 05:52:33 +0000 2007 json[user]['profile_background_color']=8350a1 json[user]['profile_background_image_url']=http://a1.twimg.com/profile_background_images/187449144/02.png json[user]['protected']= json[user]['profile_image_url']=http://a0.twimg.com/profile_images/1202496271/usa_normal.png json[user]['id_str']=7948862 json[user]['default_profile_image']= json[user]['profile_text_color']=f2afcf json[user]['name']=つんつ json[user]['profile_sidebar_fill_color']=8350a1 json[user]['screen_name']=cocoism json[user]['id']=7948862 json[user]['is_translator']= json[user]['profile_background_tile']=1 json[user]['utc_offset']=32400 json[uri]=/cocoism/lifeline json[id]=43044556
設置サンプル
リストID「43044556」の情報を取得します。
設置サンプルサンプルを見る
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="Content-Language" content="ja" /> <meta http-equiv="Content-Script-Type" content="text/javascript" /> <meta http-equiv="Content-Style-Type" content="text/css" /> <meta http-equiv="imagetoolbar" content="no" /> <title>Twitter REST API:リスト関連:lists/show(指定したリストの情報を取得) | 設置サンプル</title> <link rel="stylesheet" type="text/css" href="/content/lib/global.css" /> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script> <script type="text/javascript" src="/content/lib/jquery/jquery.jsonp.js"></script> <!-- JS --> <script type="text/javascript"> $(function(){ var url="http://api.twitter.com/1/lists/show.json?list_id=43044556&callback={callback}"; $.getJSONP(url, function(json){ var s=""; s+="<li>json.mode = "+json.mode+"</li>"; s+="<li>json.description = "+json.description+"</li>"; s+="<li>json.member_count = "+json.member_count+"</li>"; s+="<li>json.following = "+json.following+"</li>"; s+="<li>json.subscriber_count = "+json.subscriber_count+"</li>"; s+="<li>json.id_str = "+json.id_str+"</li>"; s+="<li>json.slug = "+json.slug+"</li>"; s+="<li>json.full_name = "+json.full_name+"</li>"; s+="<li>json.name = "+json.name+"</li>"; s+="<li>json.uri = "+json.uri+"</li>"; s+="<li>json.id = "+json.id+"</li>"; s+="<li>json.user"; s+="<ul>"; s+="<li>json.user.default_profile = "+json.user.default_profile+"</li>"; s+="<li>json.user.follow_request_sent = "+json.user.follow_request_sent+"</li>"; s+="<li>json.user.lang = "+json.user.lang+"</li>"; s+="<li>json.user.friends_count = "+json.user.friends_count+"</li>"; s+="<li>json.user.verified = "+json.user.verified+"</li>"; s+="<li>json.user.profile_link_color = "+json.user.profile_link_color+"</li>"; s+="<li>json.user.description = "+json.user.description+"</li>"; s+="<li>json.user.location = "+json.user.location+"</li>"; s+="<li>json.user.show_all_inline_media = "+json.user.show_all_inline_media+"</li>"; s+="<li>json.user.geo_enabled = "+json.user.geo_enabled+"</li>"; s+="<li>json.user.profile_sidebar_border_color = "+json.user.profile_sidebar_border_color+"</li>"; s+="<li>json.user.followers_count = "+json.user.followers_count+"</li>"; s+="<li>json.user.time_zone = "+json.user.time_zone+"</li>"; s+="<li>json.user.url = "+json.user.url+"</li>"; s+="<li>json.user.listed_count = "+json.user.listed_count+"</li>"; s+="<li>json.user.profile_use_background_image = "+json.user.profile_use_background_image+"</li>"; s+="<li>json.user.favourites_count = "+json.user.favourites_count+"</li>"; s+="<li>json.user.contributors_enabled = "+json.user.contributors_enabled+"</li>"; s+="<li>json.user.statuses_count = "+json.user.statuses_count+"</li>"; s+="<li>json.user.following = "+json.user.following+"</li>"; s+="<li>json.user.notifications = "+json.user.notifications+"</li>"; s+="<li>json.user.created_at = "+json.user.created_at+"</li>"; s+="<li>json.user.profile_background_color = "+json.user.profile_background_color+"</li>"; s+="<li>json.user.profile_background_image_url = "+json.user.profile_background_image_url+"</li>"; s+="<li>json.user.protected = "+json.user.protected+"</li>"; s+="<li>json.user.profile_image_url = "+json.user.profile_image_url+"</li>"; s+="<li>json.user.id_str = "+json.user.id_str+"</li>"; s+="<li>json.user.default_profile_image = "+json.user.default_profile_image+"</li>"; s+="<li>json.user.profile_text_color = "+json.user.profile_text_color+"</li>"; s+="<li>json.user.name = "+json.user.name+"</li>"; s+="<li>json.user.profile_sidebar_fill_color = "+json.user.profile_sidebar_fill_color+"</li>"; s+="<li>json.user.screen_name = "+json.user.screen_name+"</li>"; s+="<li>json.user.id = "+json.user.id+"</li>"; s+="<li>json.user.is_translator = "+json.user.is_translator+"</li>"; s+="<li>json.user.profile_background_tile = "+json.user.profile_background_tile+"</li>"; s+="<li>json.user.utc_offset = "+json.user.utc_offset+"</li>"; s+="</ul>"; s+="</li>"; $("#recent").html("<ul>"+s+"</ul>"); }); }); </script> </head> <body> <div id="wrap"> <h1>Twitter REST API:リスト関連:lists/show(指定したリストの情報を取得)| 設置サンプル</h1> <p>リストID「43044556」の情報を取得します。このAPIは認証不要です。</p> <!-- CODE --> <div id="recent"></div> <!-- / CODE --> </div> </body> </html>
lists/destroy
認証ユーザーのリストから特定のリストを削除(要認証)
2009/7/18
http://api.twitter.com/1/lists/destroy.[xml|json]
認証ユーザーのリストから特定のリストを削除し、削除したリスト情報を返します。
パラメーター
パラメーター | 説明 | |
---|---|---|
list_id | 必須 | 削除するリストIDを指定します。 |
slug | 必須 |
リストIDでなく、slugを使う場合は、owner_idまたはowner_nameを使用して、リストの所有者も指定する必要があります。 例)http://api.twitter.com/1/lists/destroy.xml?slug=team&owner_screen_name=twitterapi 例)http://api.twitter.com/1/lists/destroy.xml?slug=team&owner_id=6253282 |
取得サンプル(XML/JSON)
destroy.xml
<?xml version="1.0" encoding="UTF-8"?> <list> <id>45913633</id> <name>気になる人</name> <full_name>@pjroomer/気になる人-10</full_name> <slug>気になる人-10</slug> <description></description> <subscriber_count>0</subscriber_count> <member_count>0</member_count> <uri>/pjroomer/気になる人-10</uri> <following>false</following> <mode>public</mode> <user> <id>55984769</id> <name>PJRPJRPJRPJRPJRPJRPJ</name> <screen_name>pjroomer</screen_name> <location>とうきょう</location> <description>いやんばか。</description> <profile_image_url>http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png</profile_image_url> <url>http://www.hoge.com/ajierjaowejraojioejr#abut</url> <protected>false</protected> <followers_count>9</followers_count> <profile_background_color>C0DEED</profile_background_color> <profile_text_color>333333</profile_text_color> <profile_link_color>0084B4</profile_link_color> <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color> <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color> <friends_count>190</friends_count> <created_at>Sun Jul 12 01:37:21 +0000 2009</created_at> <favourites_count>99</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a0.twimg.com/images/themes/theme1/bg.png</profile_background_image_url> <profile_background_tile>false</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>true</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>1424</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>4</listed_count> <show_all_inline_media>false</show_all_inline_media> <default_profile>true</default_profile> <default_profile_image>true</default_profile_image> <is_translator>false</is_translator> </user> </list> ▼存在しないリストIDを指定した場合 <?xml version="1.0" encoding="UTF-8"?> <hash> <request>/1/lists/destroy.xml</request> <error>Not found</error> </hash>
destroy.json
json[mode]=public json[description]= json[member_count]=0 json[following]= json[subscriber_count]=0 json[id_str]=45913632 json[slug]=気になる人-9 json[full_name]=@pjroomer/気になる人-9 json[name]=気になる人 json[user]['is_translator']= json[user]['lang']=ja json[user]['verified']= json[user]['profile_link_color']=0084B4 json[user]['description']=いやんばか。 json[user]['location']=とうきょう json[user]['show_all_inline_media']= json[user]['geo_enabled']=1 json[user]['profile_sidebar_border_color']=C0DEED json[user]['followers_count']=9 json[user]['listed_count']=4 json[user]['time_zone']=Tokyo json[user]['url']=http://www.hoge.com/ajierjaowejraojioejr#abut json[user]['default_profile']=1 json[user]['profile_use_background_image']=1 json[user]['favourites_count']=99 json[user]['statuses_count']=1424 json[user]['following']= json[user]['notifications']= json[user]['created_at']=Sun Jul 12 01:37:21 +0000 2009 json[user]['profile_background_color']=C0DEED json[user]['profile_background_image_url']=http://a0.twimg.com/images/themes/theme1/bg.png json[user]['default_profile_image']=1 json[user]['contributors_enabled']= json[user]['protected']= json[user]['profile_image_url']=http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png json[user]['id_str']=55984769 json[user]['profile_text_color']=333333 json[user]['name']=PJRPJRPJRPJRPJRPJRPJ json[user]['profile_sidebar_fill_color']=DDEEF6 json[user]['screen_name']=pjroomer json[user]['id']=55984769 json[user]['follow_request_sent']= json[user]['profile_background_tile']= json[user]['utc_offset']=32400 json[user]['friends_count']=190 json[uri]=/pjroomer/気になる人-9 json[id]=45913632 ▼存在しないリストIDを指定した場合 json[request]=/1/lists/destroy.json json[error]=Not found
lists/statuses
特定リストに所属するメンバーのつぶやきタイムラインを取得(認証不要)
2009/7/18
http://api.twitter.com/1/lists/statuses.[xml|json|atom]
指定したリストのタイムライン(リストに属するメンバーのツイート)を取得します。
パラメーター
パラメーター | 説明 | |
---|---|---|
list_id | 必須 | リストIDを指定します。 例)http://api.twitter.com/1/lists/statuses.xml?list_id=5466220198 |
slug | 必須 |
リストIDでなく、slugを使う場合は、owner_idまたはowner_nameを使用して、リストの所有者も指定する必要があります。 例)http://api.twitter.com/1/lists/statuses.xml?slug=team&owner_screen_name=twitterapi 例)http://api.twitter.com/1/lists/statuses.xml?slug=team&owner_id=6253282 |
since_id | 任意 | 指定したリストIDより後のつぶやきを取得したい場合に使用。 例)http://api.twitter.com/1/twitterapi/lists/team/statuses.xml?since_id=12345 |
max_id | 任意 | 指定リストIDより前のつぶやきを取得したい場合に使用。 例)http://api.twitter.com/1/twitterapi/lists/team/statuses.xml?max_id=54321 |
count | 任意 | 検索するステータスの数を指定。最大200まで。 例)http://api.twitter.com/1/twitterapi/lists/team/statuses.xml?count=5 |
page | 任意 | 指定したページ番号(1ページ20件)のつぶやきを取得したい場合に使用。 例) http://api.twitter.com/1/twitterapi/lists/team/statuses.xml?page=3 |
trim_user | 任意 |
ユーザー情報を詳細でなく、ユーザーIDだけにしたい場合は、true,t,1のいずれかを指定。 例)http://api.twitter.com/1/lists/statuses.xml?trim_user=1 |
include_entities | 任意 |
ステータス情報に'entities'を含める場合は、true,t,1のいずれかを指定。 例)http://api.twitter.com/1/lists/statuses.xml?include_entities=1 |
include_rts | 任意 |
リツイートを含めたユーザータイムラインを取得する場合は、true,t,1のいずれかを指定。 例)http://api.twitter.com/1/lists/statuses.xml?include_rts=true |
取得サンプル(XML/JSON)
statuses.xml
<?xml version="1.0" encoding="UTF-8"?> <statuses type="array"> <status> <created_at>Mon May 23 13:41:50 +0000 2011</created_at> <id>72658497107533826</id> <text>Welcome to @Anywhere | dev.twitter.com http://ow.ly/50HLE</text> <source><a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a></source> <truncated>false</truncated> <favorited>false</favorited> <in_reply_to_status_id></in_reply_to_status_id> <in_reply_to_user_id></in_reply_to_user_id> <in_reply_to_screen_name></in_reply_to_screen_name> <retweet_count>0</retweet_count> <retweeted>false</retweeted> <user> <id>7948862</id> <name>つんつ</name> <screen_name>cocoism</screen_name> <location>カワタマ or オモサン</location> <description>青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。</description> <profile_image_url>http://a0.twimg.com/profile_images/1202496271/usa_normal.png</profile_image_url> <url>http://phpjavascriptroom.com/</url> <protected>false</protected> <followers_count>614</followers_count> <profile_background_color>8350a1</profile_background_color> <profile_text_color>f2afcf</profile_text_color> <profile_link_color>f2afcf</profile_link_color> <profile_sidebar_fill_color>8350a1</profile_sidebar_fill_color> <profile_sidebar_border_color>8350a1</profile_sidebar_border_color> <friends_count>527</friends_count> <created_at>Sat Aug 04 05:52:33 +0000 2007</created_at> <favourites_count>440</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a1.twimg.com/profile_background_images/187449144/02.png</profile_background_image_url> <profile_background_tile>true</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>true</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>4976</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>51</listed_count> <show_all_inline_media>true</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> <geo/> <coordinates/> <place/> <contributors/> </status> <status> <created_at>Mon May 23 13:16:58 +0000 2011</created_at> <id>72652239541510144</id> <text>Free HTML5 Slideshows - SlideMyPics http://ow.ly/50FBL FlickrやFacebookの写真を並べ替えて音楽つきのスライドショーをつくってシェアできちゃう。つくったのコレ→http://ow.ly/50G0O</text> <source><a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a></source> <truncated>false</truncated> <favorited>false</favorited> <in_reply_to_status_id></in_reply_to_status_id> <in_reply_to_user_id></in_reply_to_user_id> <in_reply_to_screen_name></in_reply_to_screen_name> <retweet_count>0</retweet_count> <retweeted>false</retweeted> <user> <id>7948862</id> <name>つんつ</name> <screen_name>cocoism</screen_name> <location>カワタマ or オモサン</location> <description>青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。</description> <profile_image_url>http://a0.twimg.com/profile_images/1202496271/usa_normal.png</profile_image_url> <url>http://phpjavascriptroom.com/</url> <protected>false</protected> <followers_count>614</followers_count> <profile_background_color>8350a1</profile_background_color> <profile_text_color>f2afcf</profile_text_color> <profile_link_color>f2afcf</profile_link_color> <profile_sidebar_fill_color>8350a1</profile_sidebar_fill_color> <profile_sidebar_border_color>8350a1</profile_sidebar_border_color> <friends_count>527</friends_count> <created_at>Sat Aug 04 05:52:33 +0000 2007</created_at> <favourites_count>440</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a1.twimg.com/profile_background_images/187449144/02.png</profile_background_image_url> <profile_background_tile>true</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>true</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>4976</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>51</listed_count> <show_all_inline_media>true</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> <geo/> <coordinates/> <place/> <contributors/> </status> <status> <created_at>Mon May 23 12:55:27 +0000 2011</created_at> <id>72646826150469632</id> <text>あんなにすぐ電池なくなるのに大丈夫なのかな。 - Android版 モバイルSuicaが7月23日よりサービス開始 « コムギドットネット http://ow.ly/50EZ4</text> <source><a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a></source> <truncated>false</truncated> <favorited>false</favorited> <in_reply_to_status_id></in_reply_to_status_id> <in_reply_to_user_id></in_reply_to_user_id> <in_reply_to_screen_name></in_reply_to_screen_name> <retweet_count>0</retweet_count> <retweeted>false</retweeted> <user> <id>7948862</id> <name>つんつ</name> <screen_name>cocoism</screen_name> <location>カワタマ or オモサン</location> <description>青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。</description> <profile_image_url>http://a0.twimg.com/profile_images/1202496271/usa_normal.png</profile_image_url> <url>http://phpjavascriptroom.com/</url> <protected>false</protected> <followers_count>614</followers_count> <profile_background_color>8350a1</profile_background_color> <profile_text_color>f2afcf</profile_text_color> <profile_link_color>f2afcf</profile_link_color> <profile_sidebar_fill_color>8350a1</profile_sidebar_fill_color> <profile_sidebar_border_color>8350a1</profile_sidebar_border_color> <friends_count>527</friends_count> <created_at>Sat Aug 04 05:52:33 +0000 2007</created_at> <favourites_count>440</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a1.twimg.com/profile_background_images/187449144/02.png</profile_background_image_url> <profile_background_tile>true</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>true</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>4976</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>51</listed_count> <show_all_inline_media>true</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> <geo/> <coordinates/> <place/> <contributors/> </status> <status> <created_at>Mon May 23 12:42:40 +0000 2011</created_at> <id>72643607793893377</id> <text>サイダーボトルの動きがめちゃくちゃ可愛い♥ - Online Portfolio von Jan Ploch - http://ow.ly/50EnS</text> <source><a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a></source> <truncated>false</truncated> <favorited>false</favorited> <in_reply_to_status_id></in_reply_to_status_id> <in_reply_to_user_id></in_reply_to_user_id> <in_reply_to_screen_name></in_reply_to_screen_name> <retweet_count>0</retweet_count> <retweeted>false</retweeted> <user> <id>7948862</id> <name>つんつ</name> <screen_name>cocoism</screen_name> <location>カワタマ or オモサン</location> <description>青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。</description> <profile_image_url>http://a0.twimg.com/profile_images/1202496271/usa_normal.png</profile_image_url> <url>http://phpjavascriptroom.com/</url> <protected>false</protected> <followers_count>614</followers_count> <profile_background_color>8350a1</profile_background_color> <profile_text_color>f2afcf</profile_text_color> <profile_link_color>f2afcf</profile_link_color> <profile_sidebar_fill_color>8350a1</profile_sidebar_fill_color> <profile_sidebar_border_color>8350a1</profile_sidebar_border_color> <friends_count>527</friends_count> <created_at>Sat Aug 04 05:52:33 +0000 2007</created_at> <favourites_count>440</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a1.twimg.com/profile_background_images/187449144/02.png</profile_background_image_url> <profile_background_tile>true</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>true</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>4976</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>51</listed_count> <show_all_inline_media>true</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> <geo/> <coordinates/> <place/> <contributors/> </status> <status> <created_at>Mon May 23 12:18:57 +0000 2011</created_at> <id>72637641073504256</id> <text>ソイッシュ。豆乳+ヨーグルトでまずうま系だった(^◇^;) http://instagr.am/p/Enmdu/</text> <source><a href="http://instagr.am" rel="nofollow">Instagram</a></source> <truncated>false</truncated> <favorited>false</favorited> <in_reply_to_status_id></in_reply_to_status_id> <in_reply_to_user_id></in_reply_to_user_id> <in_reply_to_screen_name></in_reply_to_screen_name> <retweet_count>0</retweet_count> <retweeted>false</retweeted> <user> <id>7948862</id> <name>つんつ</name> <screen_name>cocoism</screen_name> <location>カワタマ or オモサン</location> <description>青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。</description> <profile_image_url>http://a0.twimg.com/profile_images/1202496271/usa_normal.png</profile_image_url> <url>http://phpjavascriptroom.com/</url> <protected>false</protected> <followers_count>614</followers_count> <profile_background_color>8350a1</profile_background_color> <profile_text_color>f2afcf</profile_text_color> <profile_link_color>f2afcf</profile_link_color> <profile_sidebar_fill_color>8350a1</profile_sidebar_fill_color> <profile_sidebar_border_color>8350a1</profile_sidebar_border_color> <friends_count>527</friends_count> <created_at>Sat Aug 04 05:52:33 +0000 2007</created_at> <favourites_count>440</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a1.twimg.com/profile_background_images/187449144/02.png</profile_background_image_url> <profile_background_tile>true</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>true</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>4976</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>51</listed_count> <show_all_inline_media>true</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> <geo/> <coordinates/> <place/> <contributors/> </status> <status> <created_at>Mon May 23 11:54:41 +0000 2011</created_at> <id>72631531436388352</id> <text>やっぱりな結果だ。電波がいいほど満足度が高いというw - MM総研、スマートフォンの利用実態調査でサイトの閲覧時間は携帯電話の3倍 [ニュース] | Web担当者Forum http://bit.ly/m4wAyq</text> <source><a href="http://www.nibirutech.com/mobilerss-google-reader-iphone.html" rel="nofollow">MobileRSS</a></source> <truncated>false</truncated> <favorited>false</favorited> <in_reply_to_status_id></in_reply_to_status_id> <in_reply_to_user_id></in_reply_to_user_id> <in_reply_to_screen_name></in_reply_to_screen_name> <retweet_count>0</retweet_count> <retweeted>false</retweeted> <user> <id>7948862</id> <name>つんつ</name> <screen_name>cocoism</screen_name> <location>カワタマ or オモサン</location> <description>青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。</description> <profile_image_url>http://a0.twimg.com/profile_images/1202496271/usa_normal.png</profile_image_url> <url>http://phpjavascriptroom.com/</url> <protected>false</protected> <followers_count>614</followers_count> <profile_background_color>8350a1</profile_background_color> <profile_text_color>f2afcf</profile_text_color> <profile_link_color>f2afcf</profile_link_color> <profile_sidebar_fill_color>8350a1</profile_sidebar_fill_color> <profile_sidebar_border_color>8350a1</profile_sidebar_border_color> <friends_count>527</friends_count> <created_at>Sat Aug 04 05:52:33 +0000 2007</created_at> <favourites_count>440</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a1.twimg.com/profile_background_images/187449144/02.png</profile_background_image_url> <profile_background_tile>true</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>true</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>4976</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>51</listed_count> <show_all_inline_media>true</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> <geo/> <coordinates/> <place/> <contributors/> </status> <status> <created_at>Mon May 23 11:45:06 +0000 2011</created_at> <id>72629119128567808</id> <text>あとでみる - 多数の動画サイトに対応したiOS/Android向け動画変換&ポータル「VLCShares」 http://bit.ly/jkrSJ9</text> <source><a href="http://www.nibirutech.com/mobilerss-google-reader-iphone.html" rel="nofollow">MobileRSS</a></source> <truncated>false</truncated> <favorited>false</favorited> <in_reply_to_status_id></in_reply_to_status_id> <in_reply_to_user_id></in_reply_to_user_id> <in_reply_to_screen_name></in_reply_to_screen_name> <retweet_count>0</retweet_count> <retweeted>false</retweeted> <user> <id>7948862</id> <name>つんつ</name> <screen_name>cocoism</screen_name> <location>カワタマ or オモサン</location> <description>青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。</description> <profile_image_url>http://a0.twimg.com/profile_images/1202496271/usa_normal.png</profile_image_url> <url>http://phpjavascriptroom.com/</url> <protected>false</protected> <followers_count>614</followers_count> <profile_background_color>8350a1</profile_background_color> <profile_text_color>f2afcf</profile_text_color> <profile_link_color>f2afcf</profile_link_color> <profile_sidebar_fill_color>8350a1</profile_sidebar_fill_color> <profile_sidebar_border_color>8350a1</profile_sidebar_border_color> <friends_count>527</friends_count> <created_at>Sat Aug 04 05:52:33 +0000 2007</created_at> <favourites_count>440</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a1.twimg.com/profile_background_images/187449144/02.png</profile_background_image_url> <profile_background_tile>true</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>true</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>4976</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>51</listed_count> <show_all_inline_media>true</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> <geo/> <coordinates/> <place/> <contributors/> </status> <status> <created_at>Mon May 23 11:35:41 +0000 2011</created_at> <id>72626749657194496</id> <text>MOONGIFT - デスクトップ/スマートフォン双方に対応したJavaScriptの2Dゲームフレームワーク「ArcadeJS」 http://bit.ly/knopn7</text> <source><a href="http://www.nibirutech.com/mobilerss-google-reader-iphone.html" rel="nofollow">MobileRSS</a></source> <truncated>false</truncated> <favorited>false</favorited> <in_reply_to_status_id></in_reply_to_status_id> <in_reply_to_user_id></in_reply_to_user_id> <in_reply_to_screen_name></in_reply_to_screen_name> <retweet_count>0</retweet_count> <retweeted>false</retweeted> <user> <id>7948862</id> <name>つんつ</name> <screen_name>cocoism</screen_name> <location>カワタマ or オモサン</location> <description>青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。</description> <profile_image_url>http://a0.twimg.com/profile_images/1202496271/usa_normal.png</profile_image_url> <url>http://phpjavascriptroom.com/</url> <protected>false</protected> <followers_count>614</followers_count> <profile_background_color>8350a1</profile_background_color> <profile_text_color>f2afcf</profile_text_color> <profile_link_color>f2afcf</profile_link_color> <profile_sidebar_fill_color>8350a1</profile_sidebar_fill_color> <profile_sidebar_border_color>8350a1</profile_sidebar_border_color> <friends_count>527</friends_count> <created_at>Sat Aug 04 05:52:33 +0000 2007</created_at> <favourites_count>440</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a1.twimg.com/profile_background_images/187449144/02.png</profile_background_image_url> <profile_background_tile>true</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>true</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>4976</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>51</listed_count> <show_all_inline_media>true</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> <geo/> <coordinates/> <place/> <contributors/> </status> <status> <created_at>Mon May 23 11:07:42 +0000 2011</created_at> <id>72619707206860800</id> <text>わーい。もうすぐ300人♪ 西城秀樹状態です。</text> <source><a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a></source> <truncated>false</truncated> <favorited>false</favorited> <in_reply_to_status_id></in_reply_to_status_id> <in_reply_to_user_id></in_reply_to_user_id> <in_reply_to_screen_name></in_reply_to_screen_name> <retweet_count>0</retweet_count> <retweeted>false</retweeted> <user> <id>7948862</id> <name>つんつ</name> <screen_name>cocoism</screen_name> <location>カワタマ or オモサン</location> <description>青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。</description> <profile_image_url>http://a0.twimg.com/profile_images/1202496271/usa_normal.png</profile_image_url> <url>http://phpjavascriptroom.com/</url> <protected>false</protected> <followers_count>614</followers_count> <profile_background_color>8350a1</profile_background_color> <profile_text_color>f2afcf</profile_text_color> <profile_link_color>f2afcf</profile_link_color> <profile_sidebar_fill_color>8350a1</profile_sidebar_fill_color> <profile_sidebar_border_color>8350a1</profile_sidebar_border_color> <friends_count>527</friends_count> <created_at>Sat Aug 04 05:52:33 +0000 2007</created_at> <favourites_count>440</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a1.twimg.com/profile_background_images/187449144/02.png</profile_background_image_url> <profile_background_tile>true</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>true</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>4976</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>51</listed_count> <show_all_inline_media>true</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> <geo/> <coordinates/> <place/> <contributors/> </status> <status> <created_at>Mon May 23 07:35:55 +0000 2011</created_at> <id>72566412404727809</id> <text>ちわわんニュース紙 is out! http://bit.ly/gZaVWm ▸ Top stories today via @mildahoju @yskmblg @johnsieizpa @maris9x</text> <source><a href="http://paper.li" rel="nofollow">Paper.li</a></source> <truncated>false</truncated> <favorited>false</favorited> <in_reply_to_status_id></in_reply_to_status_id> <in_reply_to_user_id></in_reply_to_user_id> <in_reply_to_screen_name></in_reply_to_screen_name> <retweet_count>0</retweet_count> <retweeted>false</retweeted> <user> <id>7948862</id> <name>つんつ</name> <screen_name>cocoism</screen_name> <location>カワタマ or オモサン</location> <description>青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。</description> <profile_image_url>http://a0.twimg.com/profile_images/1202496271/usa_normal.png</profile_image_url> <url>http://phpjavascriptroom.com/</url> <protected>false</protected> <followers_count>614</followers_count> <profile_background_color>8350a1</profile_background_color> <profile_text_color>f2afcf</profile_text_color> <profile_link_color>f2afcf</profile_link_color> <profile_sidebar_fill_color>8350a1</profile_sidebar_fill_color> <profile_sidebar_border_color>8350a1</profile_sidebar_border_color> <friends_count>527</friends_count> <created_at>Sat Aug 04 05:52:33 +0000 2007</created_at> <favourites_count>440</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a1.twimg.com/profile_background_images/187449144/02.png</profile_background_image_url> <profile_background_tile>true</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>true</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>4976</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>51</listed_count> <show_all_inline_media>true</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> <geo/> <coordinates/> <place/> <contributors/> </status> <status> <created_at>Mon May 23 01:36:49 +0000 2011</created_at> <id>72476040437563393</id> <text>わーと思ったらAppsだと動かないみたい。あとで試す!- MOONGIFT - Google公式Chrome機能拡張。GmailタスクをChromeで管理「Google Tasks (by Google)」 http://bit.ly/mzT7oc</text> <source><a href="http://www.nibirutech.com/mobilerss-google-reader-iphone.html" rel="nofollow">MobileRSS</a></source> <truncated>false</truncated> <favorited>false</favorited> <in_reply_to_status_id></in_reply_to_status_id> <in_reply_to_user_id></in_reply_to_user_id> <in_reply_to_screen_name></in_reply_to_screen_name> <retweet_count>0</retweet_count> <retweeted>false</retweeted> <user> <id>7948862</id> <name>つんつ</name> <screen_name>cocoism</screen_name> <location>カワタマ or オモサン</location> <description>青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。</description> <profile_image_url>http://a0.twimg.com/profile_images/1202496271/usa_normal.png</profile_image_url> <url>http://phpjavascriptroom.com/</url> <protected>false</protected> <followers_count>614</followers_count> <profile_background_color>8350a1</profile_background_color> <profile_text_color>f2afcf</profile_text_color> <profile_link_color>f2afcf</profile_link_color> <profile_sidebar_fill_color>8350a1</profile_sidebar_fill_color> <profile_sidebar_border_color>8350a1</profile_sidebar_border_color> <friends_count>527</friends_count> <created_at>Sat Aug 04 05:52:33 +0000 2007</created_at> <favourites_count>440</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a1.twimg.com/profile_background_images/187449144/02.png</profile_background_image_url> <profile_background_tile>true</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>true</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>4976</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>51</listed_count> <show_all_inline_media>true</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> <geo/> <coordinates/> <place/> <contributors/> </status> <status> <created_at>Mon May 23 01:30:51 +0000 2011</created_at> <id>72474539640098816</id> <text>引っ掻いたり、画面傷つかないか心配じゃない!? - 広告大臣 - ついにネコ用のiPadアプリが登場しちゃいましたぁ! http://feedproxy.google.com/~r/ad-minister/~3/gco7QFEawu8/</text> <source><a href="http://www.nibirutech.com/mobilerss-google-reader-iphone.html" rel="nofollow">MobileRSS</a></source> <truncated>false</truncated> <favorited>false</favorited> <in_reply_to_status_id></in_reply_to_status_id> <in_reply_to_user_id></in_reply_to_user_id> <in_reply_to_screen_name></in_reply_to_screen_name> <retweet_count>0</retweet_count> <retweeted>false</retweeted> <user> <id>7948862</id> <name>つんつ</name> <screen_name>cocoism</screen_name> <location>カワタマ or オモサン</location> <description>青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。</description> <profile_image_url>http://a0.twimg.com/profile_images/1202496271/usa_normal.png</profile_image_url> <url>http://phpjavascriptroom.com/</url> <protected>false</protected> <followers_count>614</followers_count> <profile_background_color>8350a1</profile_background_color> <profile_text_color>f2afcf</profile_text_color> <profile_link_color>f2afcf</profile_link_color> <profile_sidebar_fill_color>8350a1</profile_sidebar_fill_color> <profile_sidebar_border_color>8350a1</profile_sidebar_border_color> <friends_count>527</friends_count> <created_at>Sat Aug 04 05:52:33 +0000 2007</created_at> <favourites_count>440</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a1.twimg.com/profile_background_images/187449144/02.png</profile_background_image_url> <profile_background_tile>true</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>true</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>4976</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>51</listed_count> <show_all_inline_media>true</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> <geo/> <coordinates/> <place/> <contributors/> </status> <status> <created_at>Mon May 23 01:22:48 +0000 2011</created_at> <id>72472513145344000</id> <text>へぇ。コネクトがtwitterだけだとどうなんだろ。- SEMリサーチ - グーグル、ソーシャル検索の日本語版をリリース ::SEM R http://www.sem-r.com/news-2011/20110523055242.html</text> <source><a href="http://www.nibirutech.com/mobilerss-google-reader-iphone.html" rel="nofollow">MobileRSS</a></source> <truncated>false</truncated> <favorited>false</favorited> <in_reply_to_status_id></in_reply_to_status_id> <in_reply_to_user_id></in_reply_to_user_id> <in_reply_to_screen_name></in_reply_to_screen_name> <retweet_count>0</retweet_count> <retweeted>false</retweeted> <user> <id>7948862</id> <name>つんつ</name> <screen_name>cocoism</screen_name> <location>カワタマ or オモサン</location> <description>青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。</description> <profile_image_url>http://a0.twimg.com/profile_images/1202496271/usa_normal.png</profile_image_url> <url>http://phpjavascriptroom.com/</url> <protected>false</protected> <followers_count>614</followers_count> <profile_background_color>8350a1</profile_background_color> <profile_text_color>f2afcf</profile_text_color> <profile_link_color>f2afcf</profile_link_color> <profile_sidebar_fill_color>8350a1</profile_sidebar_fill_color> <profile_sidebar_border_color>8350a1</profile_sidebar_border_color> <friends_count>527</friends_count> <created_at>Sat Aug 04 05:52:33 +0000 2007</created_at> <favourites_count>440</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a1.twimg.com/profile_background_images/187449144/02.png</profile_background_image_url> <profile_background_tile>true</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>true</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>4976</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>51</listed_count> <show_all_inline_media>true</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> <geo/> <coordinates/> <place/> <contributors/> </status> <status> <created_at>Mon May 23 01:09:37 +0000 2011</created_at> <id>72469198202347520</id> <text>GIGAZINE - Wireless Japan 2011 NTT DOCOMO Special Site http://docomo-exhibition.jp/wj2011/sp/index.html</text> <source><a href="http://www.nibirutech.com/mobilerss-google-reader-iphone.html" rel="nofollow">MobileRSS</a></source> <truncated>false</truncated> <favorited>false</favorited> <in_reply_to_status_id></in_reply_to_status_id> <in_reply_to_user_id></in_reply_to_user_id> <in_reply_to_screen_name></in_reply_to_screen_name> <retweet_count>0</retweet_count> <retweeted>false</retweeted> <user> <id>7948862</id> <name>つんつ</name> <screen_name>cocoism</screen_name> <location>カワタマ or オモサン</location> <description>青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。</description> <profile_image_url>http://a0.twimg.com/profile_images/1202496271/usa_normal.png</profile_image_url> <url>http://phpjavascriptroom.com/</url> <protected>false</protected> <followers_count>614</followers_count> <profile_background_color>8350a1</profile_background_color> <profile_text_color>f2afcf</profile_text_color> <profile_link_color>f2afcf</profile_link_color> <profile_sidebar_fill_color>8350a1</profile_sidebar_fill_color> <profile_sidebar_border_color>8350a1</profile_sidebar_border_color> <friends_count>527</friends_count> <created_at>Sat Aug 04 05:52:33 +0000 2007</created_at> <favourites_count>440</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a1.twimg.com/profile_background_images/187449144/02.png</profile_background_image_url> <profile_background_tile>true</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>true</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>4976</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>51</listed_count> <show_all_inline_media>true</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> <geo/> <coordinates/> <place/> <contributors/> </status> <status> <created_at>Sun May 22 21:31:57 +0000 2011</created_at> <id>72414418079711232</id> <text>Daily - cocoism is out! http://bit.ly/dSxEtg ▸ Top stories today via @takezo76</text> <source><a href="http://paper.li" rel="nofollow">Paper.li</a></source> <truncated>false</truncated> <favorited>false</favorited> <in_reply_to_status_id></in_reply_to_status_id> <in_reply_to_user_id></in_reply_to_user_id> <in_reply_to_screen_name></in_reply_to_screen_name> <retweet_count>0</retweet_count> <retweeted>false</retweeted> <user> <id>7948862</id> <name>つんつ</name> <screen_name>cocoism</screen_name> <location>カワタマ or オモサン</location> <description>青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。</description> <profile_image_url>http://a0.twimg.com/profile_images/1202496271/usa_normal.png</profile_image_url> <url>http://phpjavascriptroom.com/</url> <protected>false</protected> <followers_count>614</followers_count> <profile_background_color>8350a1</profile_background_color> <profile_text_color>f2afcf</profile_text_color> <profile_link_color>f2afcf</profile_link_color> <profile_sidebar_fill_color>8350a1</profile_sidebar_fill_color> <profile_sidebar_border_color>8350a1</profile_sidebar_border_color> <friends_count>527</friends_count> <created_at>Sat Aug 04 05:52:33 +0000 2007</created_at> <favourites_count>440</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a1.twimg.com/profile_background_images/187449144/02.png</profile_background_image_url> <profile_background_tile>true</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>true</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>4976</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>51</listed_count> <show_all_inline_media>true</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> <geo/> <coordinates/> <place/> <contributors/> </status> <status> <created_at>Sun May 22 15:13:10 +0000 2011</created_at> <id>72319094711533568</id> <text>facebookページアカウントで見てると、いいねボタンがプロフ画像(・・・のアカウントに切り替えてログイン)になる現象なおらないのかしら。。。</text> <source><a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a></source> <truncated>false</truncated> <favorited>false</favorited> <in_reply_to_status_id></in_reply_to_status_id> <in_reply_to_user_id></in_reply_to_user_id> <in_reply_to_screen_name></in_reply_to_screen_name> <retweet_count>0</retweet_count> <retweeted>false</retweeted> <user> <id>7948862</id> <name>つんつ</name> <screen_name>cocoism</screen_name> <location>カワタマ or オモサン</location> <description>青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。</description> <profile_image_url>http://a0.twimg.com/profile_images/1202496271/usa_normal.png</profile_image_url> <url>http://phpjavascriptroom.com/</url> <protected>false</protected> <followers_count>614</followers_count> <profile_background_color>8350a1</profile_background_color> <profile_text_color>f2afcf</profile_text_color> <profile_link_color>f2afcf</profile_link_color> <profile_sidebar_fill_color>8350a1</profile_sidebar_fill_color> <profile_sidebar_border_color>8350a1</profile_sidebar_border_color> <friends_count>527</friends_count> <created_at>Sat Aug 04 05:52:33 +0000 2007</created_at> <favourites_count>440</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a1.twimg.com/profile_background_images/187449144/02.png</profile_background_image_url> <profile_background_tile>true</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>true</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>4976</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>51</listed_count> <show_all_inline_media>true</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> <geo/> <coordinates/> <place/> <contributors/> </status> <status> <created_at>Sun May 22 14:51:41 +0000 2011</created_at> <id>72313686601113601</id> <text>Flickrのトップ変わった!? - Welcome to Flickr - Photo Sharing http://ow.ly/50aqh</text> <source><a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a></source> <truncated>false</truncated> <favorited>false</favorited> <in_reply_to_status_id></in_reply_to_status_id> <in_reply_to_user_id></in_reply_to_user_id> <in_reply_to_screen_name></in_reply_to_screen_name> <retweet_count>0</retweet_count> <retweeted>false</retweeted> <user> <id>7948862</id> <name>つんつ</name> <screen_name>cocoism</screen_name> <location>カワタマ or オモサン</location> <description>青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。</description> <profile_image_url>http://a0.twimg.com/profile_images/1202496271/usa_normal.png</profile_image_url> <url>http://phpjavascriptroom.com/</url> <protected>false</protected> <followers_count>614</followers_count> <profile_background_color>8350a1</profile_background_color> <profile_text_color>f2afcf</profile_text_color> <profile_link_color>f2afcf</profile_link_color> <profile_sidebar_fill_color>8350a1</profile_sidebar_fill_color> <profile_sidebar_border_color>8350a1</profile_sidebar_border_color> <friends_count>527</friends_count> <created_at>Sat Aug 04 05:52:33 +0000 2007</created_at> <favourites_count>440</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a1.twimg.com/profile_background_images/187449144/02.png</profile_background_image_url> <profile_background_tile>true</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>true</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>4976</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>51</listed_count> <show_all_inline_media>true</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> <geo/> <coordinates/> <place/> <contributors/> </status> <status> <created_at>Sun May 22 14:50:52 +0000 2011</created_at> <id>72313483206729728</id> <text>Flickrのトップ変わった? - Welcome to Flickr - Photo Sharing http://ow.ly/50apa</text> <source><a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a></source> <truncated>false</truncated> <favorited>false</favorited> <in_reply_to_status_id></in_reply_to_status_id> <in_reply_to_user_id></in_reply_to_user_id> <in_reply_to_screen_name></in_reply_to_screen_name> <retweet_count>0</retweet_count> <retweeted>false</retweeted> <user> <id>7948862</id> <name>つんつ</name> <screen_name>cocoism</screen_name> <location>カワタマ or オモサン</location> <description>青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。</description> <profile_image_url>http://a0.twimg.com/profile_images/1202496271/usa_normal.png</profile_image_url> <url>http://phpjavascriptroom.com/</url> <protected>false</protected> <followers_count>614</followers_count> <profile_background_color>8350a1</profile_background_color> <profile_text_color>f2afcf</profile_text_color> <profile_link_color>f2afcf</profile_link_color> <profile_sidebar_fill_color>8350a1</profile_sidebar_fill_color> <profile_sidebar_border_color>8350a1</profile_sidebar_border_color> <friends_count>527</friends_count> <created_at>Sat Aug 04 05:52:33 +0000 2007</created_at> <favourites_count>440</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a1.twimg.com/profile_background_images/187449144/02.png</profile_background_image_url> <profile_background_tile>true</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>true</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>4976</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>51</listed_count> <show_all_inline_media>true</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> <geo/> <coordinates/> <place/> <contributors/> </status> <status> <created_at>Sun May 22 14:46:31 +0000 2011</created_at> <id>72312389411934209</id> <text>IMGSHRのChromeエクステンションはいいかも!見てるページの画像を抽出してくれるし、ちゃんと引用元のURLも表示してくれてる。</text> <source><a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a></source> <truncated>false</truncated> <favorited>false</favorited> <in_reply_to_status_id></in_reply_to_status_id> <in_reply_to_user_id></in_reply_to_user_id> <in_reply_to_screen_name></in_reply_to_screen_name> <retweet_count>0</retweet_count> <retweeted>false</retweeted> <user> <id>7948862</id> <name>つんつ</name> <screen_name>cocoism</screen_name> <location>カワタマ or オモサン</location> <description>青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。</description> <profile_image_url>http://a0.twimg.com/profile_images/1202496271/usa_normal.png</profile_image_url> <url>http://phpjavascriptroom.com/</url> <protected>false</protected> <followers_count>614</followers_count> <profile_background_color>8350a1</profile_background_color> <profile_text_color>f2afcf</profile_text_color> <profile_link_color>f2afcf</profile_link_color> <profile_sidebar_fill_color>8350a1</profile_sidebar_fill_color> <profile_sidebar_border_color>8350a1</profile_sidebar_border_color> <friends_count>527</friends_count> <created_at>Sat Aug 04 05:52:33 +0000 2007</created_at> <favourites_count>440</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a1.twimg.com/profile_background_images/187449144/02.png</profile_background_image_url> <profile_background_tile>true</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>true</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>4976</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>51</listed_count> <show_all_inline_media>true</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> <geo/> <coordinates/> <place/> <contributors/> </status> <status> <created_at>Sun May 22 14:40:52 +0000 2011</created_at> <id>72310966083268608</id> <text>へぇと思って試してたら、メール投稿で即効エラーが。。。 - IMGSHR(イメージシェア)/1クリックでソーシャルシェア http://t.co/7yPVFLX via @imgshr</text> <source><a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a></source> <truncated>false</truncated> <favorited>false</favorited> <in_reply_to_status_id></in_reply_to_status_id> <in_reply_to_user_id></in_reply_to_user_id> <in_reply_to_screen_name></in_reply_to_screen_name> <retweet_count>0</retweet_count> <retweeted>false</retweeted> <user> <id>7948862</id> <name>つんつ</name> <screen_name>cocoism</screen_name> <location>カワタマ or オモサン</location> <description>青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。</description> <profile_image_url>http://a0.twimg.com/profile_images/1202496271/usa_normal.png</profile_image_url> <url>http://phpjavascriptroom.com/</url> <protected>false</protected> <followers_count>614</followers_count> <profile_background_color>8350a1</profile_background_color> <profile_text_color>f2afcf</profile_text_color> <profile_link_color>f2afcf</profile_link_color> <profile_sidebar_fill_color>8350a1</profile_sidebar_fill_color> <profile_sidebar_border_color>8350a1</profile_sidebar_border_color> <friends_count>527</friends_count> <created_at>Sat Aug 04 05:52:33 +0000 2007</created_at> <favourites_count>440</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a1.twimg.com/profile_background_images/187449144/02.png</profile_background_image_url> <profile_background_tile>true</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>true</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>4976</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>51</listed_count> <show_all_inline_media>true</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> <geo/> <coordinates/> <place/> <contributors/> </status> </statuses>
statuses.json
json[0]['in_reply_to_status_id_str']= json[0]['coordinates']= json[0]['geo']= json[0]['contributors']= json[0]['user']['default_profile_image']= json[0]['user']['contributors_enabled']= json[0]['user']['protected']= json[0]['user']['show_all_inline_media']=1 json[0]['user']['verified']= json[0]['user']['geo_enabled']=1 json[0]['user']['profile_link_color']=f2afcf json[0]['user']['profile_image_url']=http://a0.twimg.com/profile_images/1202496271/usa_normal.png json[0]['user']['name']=つんつ json[0]['user']['profile_sidebar_border_color']=8350a1 json[0]['user']['followers_count']=614 json[0]['user']['follow_request_sent']= json[0]['user']['notifications']= json[0]['user']['time_zone']=Tokyo json[0]['user']['utc_offset']=32400 json[0]['user']['friends_count']=527 json[0]['user']['screen_name']=cocoism json[0]['user']['is_translator']= json[0]['user']['statuses_count']=4976 json[0]['user']['profile_use_background_image']=1 json[0]['user']['favourites_count']=440 json[0]['user']['description']=青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。 json[0]['user']['lang']=ja json[0]['user']['profile_background_color']=8350a1 json[0]['user']['profile_background_image_url']=http://a1.twimg.com/profile_background_images/187449144/02.png json[0]['user']['location']=カワタマ or オモサン json[0]['user']['default_profile']= json[0]['user']['listed_count']=51 json[0]['user']['id']=7948862 json[0]['user']['id_str']=7948862 json[0]['user']['profile_text_color']=f2afcf json[0]['user']['url']=http://phpjavascriptroom.com/ json[0]['user']['profile_sidebar_fill_color']=8350a1 json[0]['user']['following']= json[0]['user']['profile_background_tile']=1 json[0]['user']['created_at']=Sat Aug 04 05:52:33 +0000 2007 json[0]['retweeted']= json[0]['in_reply_to_user_id']= json[0]['in_reply_to_user_id_str']= json[0]['truncated']= json[0]['text']=Welcome to @Anywhere | dev.twitter.com http://ow.ly/50HLE json[0]['place']= json[0]['in_reply_to_status_id']= json[0]['id']=7.26584971075E+16 json[0]['id_str']=72658497107533826 json[0]['favorited']= json[0]['source']=HootSuite json[0]['retweet_count']=0 json[0]['in_reply_to_screen_name']= json[0]['created_at']=Mon May 23 13:41:50 +0000 2011 json[1]['in_reply_to_status_id_str']= json[1]['text']=Free HTML5 Slideshows - SlideMyPics http://ow.ly/50FBL FlickrやFacebookの写真を並べ替えて音楽つきのスライドショーをつくってシェアできちゃう。つくったのコレ→http://ow.ly/50G0O json[1]['contributors']= json[1]['place']= json[1]['retweeted']= json[1]['in_reply_to_user_id']= json[1]['in_reply_to_user_id_str']= json[1]['coordinates']= json[1]['geo']= json[1]['truncated']= json[1]['source']=HootSuite json[1]['created_at']=Mon May 23 13:16:58 +0000 2011 json[1]['in_reply_to_status_id']= json[1]['id_str']=72652239541510144 json[1]['favorited']= json[1]['user']['lang']=ja json[1]['user']['friends_count']=527 json[1]['user']['verified']= json[1]['user']['profile_link_color']=f2afcf json[1]['user']['description']=青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。 json[1]['user']['location']=カワタマ or オモサン json[1]['user']['follow_request_sent']= json[1]['user']['profile_sidebar_border_color']=8350a1 json[1]['user']['followers_count']=614 json[1]['user']['is_translator']= json[1]['user']['time_zone']=Tokyo json[1]['user']['url']=http://phpjavascriptroom.com/ json[1]['user']['show_all_inline_media']=1 json[1]['user']['geo_enabled']=1 json[1]['user']['profile_use_background_image']=1 json[1]['user']['favourites_count']=440 json[1]['user']['following']= json[1]['user']['notifications']= json[1]['user']['created_at']=Sat Aug 04 05:52:33 +0000 2007 json[1]['user']['profile_background_color']=8350a1 json[1]['user']['listed_count']=51 json[1]['user']['profile_background_image_url']=http://a1.twimg.com/profile_background_images/187449144/02.png json[1]['user']['default_profile']= json[1]['user']['statuses_count']=4975 json[1]['user']['protected']= json[1]['user']['profile_image_url']=http://a0.twimg.com/profile_images/1202496271/usa_normal.png json[1]['user']['id_str']=7948862 json[1]['user']['contributors_enabled']= json[1]['user']['profile_text_color']=f2afcf json[1]['user']['name']=つんつ json[1]['user']['profile_sidebar_fill_color']=8350a1 json[1]['user']['screen_name']=cocoism json[1]['user']['id']=7948862 json[1]['user']['default_profile_image']= json[1]['user']['profile_background_tile']=1 json[1]['user']['utc_offset']=32400 json[1]['retweet_count']=0 json[1]['id']=7.26522395415E+16 json[1]['in_reply_to_screen_name']= json[2]['in_reply_to_user_id_str']= json[2]['coordinates']= json[2]['geo']= json[2]['user']['profile_sidebar_border_color']=8350a1 json[2]['user']['followers_count']=614 json[2]['user']['protected']= json[2]['user']['follow_request_sent']= json[2]['user']['time_zone']=Tokyo json[2]['user']['friends_count']=527 json[2]['user']['profile_image_url']=http://a0.twimg.com/profile_images/1202496271/usa_normal.png json[2]['user']['name']=つんつ json[2]['user']['is_translator']= json[2]['user']['statuses_count']=4974 json[2]['user']['profile_use_background_image']=1 json[2]['user']['favourites_count']=440 json[2]['user']['notifications']= json[2]['user']['utc_offset']=32400 json[2]['user']['profile_background_color']=8350a1 json[2]['user']['screen_name']=cocoism json[2]['user']['profile_background_image_url']=http://a1.twimg.com/profile_background_images/187449144/02.png json[2]['user']['description']=青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。 json[2]['user']['default_profile']= json[2]['user']['listed_count']=51 json[2]['user']['lang']=ja json[2]['user']['id_str']=7948862 json[2]['user']['profile_text_color']=f2afcf json[2]['user']['location']=カワタマ or オモサン json[2]['user']['profile_sidebar_fill_color']=8350a1 json[2]['user']['id']=7948862 json[2]['user']['profile_background_tile']=1 json[2]['user']['url']=http://phpjavascriptroom.com/ json[2]['user']['default_profile_image']= json[2]['user']['contributors_enabled']= json[2]['user']['show_all_inline_media']=1 json[2]['user']['following']= json[2]['user']['verified']= json[2]['user']['geo_enabled']=1 json[2]['user']['created_at']=Sat Aug 04 05:52:33 +0000 2007 json[2]['user']['profile_link_color']=f2afcf json[2]['truncated']= json[2]['text']=あんなにすぐ電池なくなるのに大丈夫なのかな。 - Android版 モバイルSuicaが7月23日よりサービス開始 « コムギドットネット http://ow.ly/50EZ4 json[2]['in_reply_to_status_id']= json[2]['id_str']=72646826150469632 json[2]['place']= json[2]['favorited']= json[2]['retweet_count']=0 json[2]['id']=7.26468261505E+16 json[2]['in_reply_to_screen_name']= json[2]['source']=HootSuite json[2]['in_reply_to_status_id_str']= json[2]['contributors']= json[2]['retweeted']= json[2]['in_reply_to_user_id']= json[2]['created_at']=Mon May 23 12:55:27 +0000 2011 json[3]['in_reply_to_status_id_str']= json[3]['text']=サイダーボトルの動きがめちゃくちゃ可愛い♥ - Online Portfolio von Jan Ploch - http://ow.ly/50EnS json[3]['contributors']= json[3]['place']= json[3]['retweeted']= json[3]['in_reply_to_user_id']= json[3]['in_reply_to_user_id_str']= json[3]['coordinates']= json[3]['geo']= json[3]['truncated']= json[3]['source']=HootSuite json[3]['created_at']=Mon May 23 12:42:40 +0000 2011 json[3]['in_reply_to_status_id']= json[3]['id_str']=72643607793893377 json[3]['favorited']= json[3]['user']['contributors_enabled']= json[3]['user']['lang']=ja json[3]['user']['verified']= json[3]['user']['profile_link_color']=f2afcf json[3]['user']['description']=青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。 json[3]['user']['location']=カワタマ or オモサン json[3]['user']['default_profile_image']= json[3]['user']['show_all_inline_media']=1 json[3]['user']['geo_enabled']=1 json[3]['user']['profile_sidebar_border_color']=8350a1 json[3]['user']['followers_count']=614 json[3]['user']['time_zone']=Tokyo json[3]['user']['friends_count']=527 json[3]['user']['url']=http://phpjavascriptroom.com/ json[3]['user']['profile_use_background_image']=1 json[3]['user']['favourites_count']=440 json[3]['user']['follow_request_sent']= json[3]['user']['statuses_count']=4973 json[3]['user']['following']= json[3]['user']['notifications']= json[3]['user']['created_at']=Sat Aug 04 05:52:33 +0000 2007 json[3]['user']['profile_background_color']=8350a1 json[3]['user']['is_translator']= json[3]['user']['profile_background_image_url']=http://a1.twimg.com/profile_background_images/187449144/02.png json[3]['user']['default_profile']= json[3]['user']['protected']= json[3]['user']['profile_image_url']=http://a0.twimg.com/profile_images/1202496271/usa_normal.png json[3]['user']['id_str']=7948862 json[3]['user']['profile_text_color']=f2afcf json[3]['user']['name']=つんつ json[3]['user']['listed_count']=51 json[3]['user']['profile_sidebar_fill_color']=8350a1 json[3]['user']['screen_name']=cocoism json[3]['user']['id']=7948862 json[3]['user']['profile_background_tile']=1 json[3]['user']['utc_offset']=32400 json[3]['retweet_count']=0 json[3]['id']=7.26436077939E+16 json[3]['in_reply_to_screen_name']= json[4]['in_reply_to_status_id_str']= json[4]['text']=ソイッシュ。豆乳+ヨーグルトでまずうま系だった(^◇^;) http://instagr.am/p/Enmdu/ json[4]['contributors']= json[4]['place']= json[4]['retweeted']= json[4]['in_reply_to_user_id']= json[4]['in_reply_to_user_id_str']= json[4]['coordinates']= json[4]['geo']= json[4]['truncated']= json[4]['source']=Instagram json[4]['created_at']=Mon May 23 12:18:57 +0000 2011 json[4]['in_reply_to_status_id']= json[4]['id_str']=72637641073504256 json[4]['favorited']= json[4]['user']['listed_count']=51 json[4]['user']['contributors_enabled']= json[4]['user']['lang']=ja json[4]['user']['verified']= json[4]['user']['profile_link_color']=f2afcf json[4]['user']['description']=青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。 json[4]['user']['location']=カワタマ or オモサン json[4]['user']['profile_sidebar_border_color']=8350a1 json[4]['user']['followers_count']=614 json[4]['user']['time_zone']=Tokyo json[4]['user']['url']=http://phpjavascriptroom.com/ json[4]['user']['default_profile_image']= json[4]['user']['profile_use_background_image']=1 json[4]['user']['favourites_count']=440 json[4]['user']['show_all_inline_media']=1 json[4]['user']['following']= json[4]['user']['geo_enabled']=1 json[4]['user']['notifications']= json[4]['user']['created_at']=Sat Aug 04 05:52:33 +0000 2007 json[4]['user']['friends_count']=527 json[4]['user']['profile_background_color']=8350a1 json[4]['user']['profile_background_image_url']=http://a1.twimg.com/profile_background_images/187449144/02.png json[4]['user']['default_profile']= json[4]['user']['follow_request_sent']= json[4]['user']['protected']= json[4]['user']['profile_image_url']=http://a0.twimg.com/profile_images/1202496271/usa_normal.png json[4]['user']['id_str']=7948862 json[4]['user']['is_translator']= json[4]['user']['statuses_count']=4972 json[4]['user']['profile_text_color']=f2afcf json[4]['user']['name']=つんつ json[4]['user']['profile_sidebar_fill_color']=8350a1 json[4]['user']['screen_name']=cocoism json[4]['user']['id']=7948862 json[4]['user']['profile_background_tile']=1 json[4]['user']['utc_offset']=32400 json[4]['retweet_count']=0 json[4]['id']=7.26376410735E+16 json[4]['in_reply_to_screen_name']= json[5]['in_reply_to_user_id_str']= json[5]['coordinates']= json[5]['geo']= json[5]['user']['default_profile']= json[5]['user']['contributors_enabled']= json[5]['user']['profile_sidebar_border_color']=8350a1 json[5]['user']['followers_count']=614 json[5]['user']['protected']= json[5]['user']['time_zone']=Tokyo json[5]['user']['profile_image_url']=http://a0.twimg.com/profile_images/1202496271/usa_normal.png json[5]['user']['name']=つんつ json[5]['user']['default_profile_image']= json[5]['user']['profile_use_background_image']=1 json[5]['user']['favourites_count']=440 json[5]['user']['notifications']= json[5]['user']['utc_offset']=32400 json[5]['user']['friends_count']=527 json[5]['user']['profile_background_color']=8350a1 json[5]['user']['screen_name']=cocoism json[5]['user']['is_translator']= json[5]['user']['profile_background_image_url']=http://a1.twimg.com/profile_background_images/187449144/02.png json[5]['user']['description']=青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。 json[5]['user']['show_all_inline_media']=1 json[5]['user']['follow_request_sent']= json[5]['user']['lang']=ja json[5]['user']['geo_enabled']=1 json[5]['user']['id_str']=7948862 json[5]['user']['profile_text_color']=f2afcf json[5]['user']['location']=カワタマ or オモサン json[5]['user']['profile_sidebar_fill_color']=8350a1 json[5]['user']['id']=7948862 json[5]['user']['statuses_count']=4971 json[5]['user']['profile_background_tile']=1 json[5]['user']['url']=http://phpjavascriptroom.com/ json[5]['user']['listed_count']=51 json[5]['user']['following']= json[5]['user']['verified']= json[5]['user']['created_at']=Sat Aug 04 05:52:33 +0000 2007 json[5]['user']['profile_link_color']=f2afcf json[5]['truncated']= json[5]['text']=やっぱりな結果だ。電波がいいほど満足度が高いというw - MM総研、スマートフォンの利用実態調査でサイトの閲覧時間は携帯電話の3倍 [ニュース] | Web担当者Forum http://bit.ly/m4wAyq json[5]['in_reply_to_status_id']= json[5]['id_str']=72631531436388352 json[5]['place']= json[5]['favorited']= json[5]['retweet_count']=0 json[5]['id']=7.26315314364E+16 json[5]['in_reply_to_screen_name']= json[5]['source']=MobileRSS json[5]['in_reply_to_status_id_str']= json[5]['contributors']= json[5]['retweeted']= json[5]['in_reply_to_user_id']= json[5]['created_at']=Mon May 23 11:54:41 +0000 2011 json[6]['in_reply_to_status_id_str']= json[6]['text']=あとでみる - 多数の動画サイトに対応したiOS/Android向け動画変換&ポータル「VLCShares」 http://bit.ly/jkrSJ9 json[6]['contributors']= json[6]['place']= json[6]['retweeted']= json[6]['in_reply_to_user_id']= json[6]['in_reply_to_user_id_str']= json[6]['coordinates']= json[6]['geo']= json[6]['truncated']= json[6]['source']=MobileRSS json[6]['created_at']=Mon May 23 11:45:06 +0000 2011 json[6]['in_reply_to_status_id']= json[6]['id_str']=72629119128567808 json[6]['favorited']= json[6]['user']['follow_request_sent']= json[6]['user']['lang']=ja json[6]['user']['friends_count']=527 json[6]['user']['is_translator']= json[6]['user']['verified']= json[6]['user']['profile_link_color']=f2afcf json[6]['user']['description']=青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。 json[6]['user']['location']=カワタマ or オモサン json[6]['user']['profile_sidebar_border_color']=8350a1 json[6]['user']['followers_count']=614 json[6]['user']['time_zone']=Tokyo json[6]['user']['url']=http://phpjavascriptroom.com/ json[6]['user']['listed_count']=51 json[6]['user']['profile_use_background_image']=1 json[6]['user']['favourites_count']=440 json[6]['user']['show_all_inline_media']=1 json[6]['user']['following']= json[6]['user']['geo_enabled']=1 json[6]['user']['notifications']= json[6]['user']['created_at']=Sat Aug 04 05:52:33 +0000 2007 json[6]['user']['profile_background_color']=8350a1 json[6]['user']['profile_background_image_url']=http://a1.twimg.com/profile_background_images/187449144/02.png json[6]['user']['protected']= json[6]['user']['profile_image_url']=http://a0.twimg.com/profile_images/1202496271/usa_normal.png json[6]['user']['id_str']=7948862 json[6]['user']['default_profile_image']= json[6]['user']['contributors_enabled']= json[6]['user']['statuses_count']=4970 json[6]['user']['profile_text_color']=f2afcf json[6]['user']['name']=つんつ json[6]['user']['profile_sidebar_fill_color']=8350a1 json[6]['user']['screen_name']=cocoism json[6]['user']['id']=7948862 json[6]['user']['default_profile']= json[6]['user']['profile_background_tile']=1 json[6]['user']['utc_offset']=32400 json[6]['retweet_count']=0 json[6]['id']=7.26291191286E+16 json[6]['in_reply_to_screen_name']= json[7]['in_reply_to_status_id_str']= json[7]['text']=MOONGIFT - デスクトップ/スマートフォン双方に対応したJavaScriptの2Dゲームフレームワーク「ArcadeJS」 http://bit.ly/knopn7 json[7]['contributors']= json[7]['place']= json[7]['retweeted']= json[7]['in_reply_to_user_id']= json[7]['in_reply_to_user_id_str']= json[7]['coordinates']= json[7]['geo']= json[7]['truncated']= json[7]['source']=MobileRSS json[7]['created_at']=Mon May 23 11:35:41 +0000 2011 json[7]['in_reply_to_status_id']= json[7]['id_str']=72626749657194496 json[7]['favorited']= json[7]['user']['lang']=ja json[7]['user']['default_profile']= json[7]['user']['contributors_enabled']= json[7]['user']['verified']= json[7]['user']['profile_link_color']=f2afcf json[7]['user']['description']=青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。 json[7]['user']['location']=カワタマ or オモサン json[7]['user']['listed_count']=51 json[7]['user']['statuses_count']=4969 json[7]['user']['profile_sidebar_border_color']=8350a1 json[7]['user']['followers_count']=613 json[7]['user']['time_zone']=Tokyo json[7]['user']['url']=http://phpjavascriptroom.com/ json[7]['user']['profile_use_background_image']=1 json[7]['user']['favourites_count']=440 json[7]['user']['following']= json[7]['user']['notifications']= json[7]['user']['created_at']=Sat Aug 04 05:52:33 +0000 2007 json[7]['user']['profile_background_color']=8350a1 json[7]['user']['default_profile_image']= json[7]['user']['profile_background_image_url']=http://a1.twimg.com/profile_background_images/187449144/02.png json[7]['user']['friends_count']=527 json[7]['user']['protected']= json[7]['user']['profile_image_url']=http://a0.twimg.com/profile_images/1202496271/usa_normal.png json[7]['user']['id_str']=7948862 json[7]['user']['is_translator']= json[7]['user']['profile_text_color']=f2afcf json[7]['user']['name']=つんつ json[7]['user']['follow_request_sent']= json[7]['user']['profile_sidebar_fill_color']=8350a1 json[7]['user']['screen_name']=cocoism json[7]['user']['id']=7948862 json[7]['user']['show_all_inline_media']=1 json[7]['user']['geo_enabled']=1 json[7]['user']['profile_background_tile']=1 json[7]['user']['utc_offset']=32400 json[7]['retweet_count']=0 json[7]['id']=7.26267496572E+16 json[7]['in_reply_to_screen_name']= json[8]['in_reply_to_status_id_str']= json[8]['coordinates']= json[8]['geo']= json[8]['contributors']= json[8]['user']['friends_count']=527 json[8]['user']['protected']= json[8]['user']['default_profile']= json[8]['user']['verified']= json[8]['user']['profile_link_color']=f2afcf json[8]['user']['profile_image_url']=http://a0.twimg.com/profile_images/1202496271/usa_normal.png json[8]['user']['name']=つんつ json[8]['user']['follow_request_sent']= json[8]['user']['profile_sidebar_border_color']=8350a1 json[8]['user']['followers_count']=613 json[8]['user']['is_translator']= json[8]['user']['statuses_count']=4967 json[8]['user']['geo_enabled']=1 json[8]['user']['notifications']= json[8]['user']['time_zone']=Tokyo json[8]['user']['utc_offset']=32400 json[8]['user']['screen_name']=cocoism json[8]['user']['profile_use_background_image']=1 json[8]['user']['favourites_count']=440 json[8]['user']['description']=青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。 json[8]['user']['lang']=ja json[8]['user']['profile_background_color']=8350a1 json[8]['user']['listed_count']=51 json[8]['user']['profile_background_image_url']=http://a1.twimg.com/profile_background_images/187449144/02.png json[8]['user']['location']=カワタマ or オモサン json[8]['user']['contributors_enabled']= json[8]['user']['id']=7948862 json[8]['user']['id_str']=7948862 json[8]['user']['profile_text_color']=f2afcf json[8]['user']['url']=http://phpjavascriptroom.com/ json[8]['user']['show_all_inline_media']=1 json[8]['user']['profile_sidebar_fill_color']=8350a1 json[8]['user']['default_profile_image']= json[8]['user']['following']= json[8]['user']['profile_background_tile']=1 json[8]['user']['created_at']=Sat Aug 04 05:52:33 +0000 2007 json[8]['retweeted']= json[8]['in_reply_to_user_id']= json[8]['in_reply_to_user_id_str']= json[8]['truncated']= json[8]['text']=わーい。もうすぐ300人♪ 西城秀樹状態です。 json[8]['place']= json[8]['in_reply_to_status_id']= json[8]['id']=7.26197072069E+16 json[8]['id_str']=72619707206860800 json[8]['favorited']= json[8]['source']=HootSuite json[8]['retweet_count']=0 json[8]['in_reply_to_screen_name']= json[8]['created_at']=Mon May 23 11:07:42 +0000 2011 json[9]['in_reply_to_status_id_str']= json[9]['text']=ちわわんニュース紙 is out! http://bit.ly/gZaVWm ▸ Top stories today via @mildahoju @yskmblg @johnsieizpa @maris9x json[9]['contributors']= json[9]['place']= json[9]['retweeted']= json[9]['in_reply_to_user_id']= json[9]['in_reply_to_user_id_str']= json[9]['coordinates']= json[9]['geo']= json[9]['truncated']= json[9]['source']=Paper.li json[9]['created_at']=Mon May 23 07:35:55 +0000 2011 json[9]['in_reply_to_status_id']= json[9]['id_str']=72566412404727809 json[9]['favorited']= json[9]['user']['default_profile_image']= json[9]['user']['contributors_enabled']= json[9]['user']['lang']=ja json[9]['user']['show_all_inline_media']=1 json[9]['user']['verified']= json[9]['user']['geo_enabled']=1 json[9]['user']['profile_link_color']=f2afcf json[9]['user']['description']=青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。 json[9]['user']['location']=カワタマ or オモサン json[9]['user']['profile_sidebar_border_color']=8350a1 json[9]['user']['followers_count']=612 json[9]['user']['follow_request_sent']= json[9]['user']['time_zone']=Tokyo json[9]['user']['friends_count']=527 json[9]['user']['url']=http://phpjavascriptroom.com/ json[9]['user']['is_translator']= json[9]['user']['default_profile']= json[9]['user']['statuses_count']=4967 json[9]['user']['profile_use_background_image']=1 json[9]['user']['favourites_count']=440 json[9]['user']['following']= json[9]['user']['notifications']= json[9]['user']['created_at']=Sat Aug 04 05:52:33 +0000 2007 json[9]['user']['profile_background_color']=8350a1 json[9]['user']['profile_background_image_url']=http://a1.twimg.com/profile_background_images/187449144/02.png json[9]['user']['listed_count']=51 json[9]['user']['protected']= json[9]['user']['profile_image_url']=http://a0.twimg.com/profile_images/1202496271/usa_normal.png json[9]['user']['id_str']=7948862 json[9]['user']['profile_text_color']=f2afcf json[9]['user']['name']=つんつ json[9]['user']['profile_sidebar_fill_color']=8350a1 json[9]['user']['screen_name']=cocoism json[9]['user']['id']=7948862 json[9]['user']['profile_background_tile']=1 json[9]['user']['utc_offset']=32400 json[9]['retweet_count']=0 json[9]['id']=7.25664124047E+16 json[9]['in_reply_to_screen_name']= json[10]['in_reply_to_status_id_str']= json[10]['coordinates']= json[10]['geo']= json[10]['contributors']= json[10]['user']['is_translator']= json[10]['user']['protected']= json[10]['user']['default_profile']= json[10]['user']['verified']= json[10]['user']['profile_link_color']=f2afcf json[10]['user']['profile_image_url']=http://a0.twimg.com/profile_images/1202496271/usa_normal.png json[10]['user']['name']=つんつ json[10]['user']['statuses_count']=4966 json[10]['user']['profile_sidebar_border_color']=8350a1 json[10]['user']['followers_count']=612 json[10]['user']['listed_count']=51 json[10]['user']['notifications']= json[10]['user']['time_zone']=Tokyo json[10]['user']['utc_offset']=32400 json[10]['user']['screen_name']=cocoism json[10]['user']['profile_use_background_image']=1 json[10]['user']['favourites_count']=440 json[10]['user']['description']=青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。 json[10]['user']['contributors_enabled']= json[10]['user']['lang']=ja json[10]['user']['profile_background_color']=8350a1 json[10]['user']['profile_background_image_url']=http://a1.twimg.com/profile_background_images/187449144/02.png json[10]['user']['location']=カワタマ or オモサン json[10]['user']['default_profile_image']= json[10]['user']['id']=7948862 json[10]['user']['id_str']=7948862 json[10]['user']['friends_count']=527 json[10]['user']['profile_text_color']=f2afcf json[10]['user']['url']=http://phpjavascriptroom.com/ json[10]['user']['profile_sidebar_fill_color']=8350a1 json[10]['user']['show_all_inline_media']=1 json[10]['user']['follow_request_sent']= json[10]['user']['following']= json[10]['user']['geo_enabled']=1 json[10]['user']['profile_background_tile']=1 json[10]['user']['created_at']=Sat Aug 04 05:52:33 +0000 2007 json[10]['retweeted']= json[10]['in_reply_to_user_id']= json[10]['in_reply_to_user_id_str']= json[10]['truncated']= json[10]['text']=わーと思ったらAppsだと動かないみたい。あとで試す!- MOONGIFT - Google公式Chrome機能拡張。GmailタスクをChromeで管理「Google Tasks (by Google)」 http://bit.ly/mzT7oc json[10]['place']= json[10]['in_reply_to_status_id']= json[10]['id']=7.24760404376E+16 json[10]['id_str']=72476040437563393 json[10]['favorited']= json[10]['source']=MobileRSS json[10]['retweet_count']=0 json[10]['in_reply_to_screen_name']= json[10]['created_at']=Mon May 23 01:36:49 +0000 2011 json[11]['in_reply_to_status_id_str']= json[11]['text']=引っ掻いたり、画面傷つかないか心配じゃない!? - 広告大臣 - ついにネコ用のiPadアプリが登場しちゃいましたぁ! http://feedproxy.google.com/~r/ad-minister/~3/gco7QFEawu8/ json[11]['contributors']= json[11]['place']= json[11]['retweeted']= json[11]['in_reply_to_user_id']= json[11]['in_reply_to_user_id_str']= json[11]['coordinates']= json[11]['geo']= json[11]['truncated']= json[11]['source']=MobileRSS json[11]['created_at']=Mon May 23 01:30:51 +0000 2011 json[11]['in_reply_to_status_id']= json[11]['id_str']=72474539640098816 json[11]['favorited']= json[11]['user']['default_profile']= json[11]['user']['contributors_enabled']= json[11]['user']['lang']=ja json[11]['user']['verified']= json[11]['user']['profile_link_color']=f2afcf json[11]['user']['description']=青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。 json[11]['user']['location']=カワタマ or オモサン json[11]['user']['default_profile_image']= json[11]['user']['show_all_inline_media']=1 json[11]['user']['geo_enabled']=1 json[11]['user']['profile_sidebar_border_color']=8350a1 json[11]['user']['followers_count']=612 json[11]['user']['time_zone']=Tokyo json[11]['user']['friends_count']=527 json[11]['user']['url']=http://phpjavascriptroom.com/ json[11]['user']['profile_use_background_image']=1 json[11]['user']['favourites_count']=440 json[11]['user']['follow_request_sent']= json[11]['user']['statuses_count']=4965 json[11]['user']['following']= json[11]['user']['notifications']= json[11]['user']['created_at']=Sat Aug 04 05:52:33 +0000 2007 json[11]['user']['profile_background_color']=8350a1 json[11]['user']['is_translator']= json[11]['user']['profile_background_image_url']=http://a1.twimg.com/profile_background_images/187449144/02.png json[11]['user']['protected']= json[11]['user']['profile_image_url']=http://a0.twimg.com/profile_images/1202496271/usa_normal.png json[11]['user']['id_str']=7948862 json[11]['user']['profile_text_color']=f2afcf json[11]['user']['name']=つんつ json[11]['user']['listed_count']=51 json[11]['user']['profile_sidebar_fill_color']=8350a1 json[11]['user']['screen_name']=cocoism json[11]['user']['id']=7948862 json[11]['user']['profile_background_tile']=1 json[11]['user']['utc_offset']=32400 json[11]['retweet_count']=0 json[11]['id']=7.24745396401E+16 json[11]['in_reply_to_screen_name']= json[12]['in_reply_to_status_id_str']= json[12]['text']=へぇ。コネクトがtwitterだけだとどうなんだろ。- SEMリサーチ - グーグル、ソーシャル検索の日本語版をリリース ::SEM R http://www.sem-r.com/news-2011/20110523055242.html json[12]['contributors']= json[12]['place']= json[12]['retweeted']= json[12]['in_reply_to_user_id']= json[12]['in_reply_to_user_id_str']= json[12]['coordinates']= json[12]['geo']= json[12]['truncated']= json[12]['source']=MobileRSS json[12]['created_at']=Mon May 23 01:22:48 +0000 2011 json[12]['in_reply_to_status_id']= json[12]['id_str']=72472513145344000 json[12]['favorited']= json[12]['user']['default_profile_image']= json[12]['user']['contributors_enabled']= json[12]['user']['lang']=ja json[12]['user']['show_all_inline_media']=1 json[12]['user']['verified']= json[12]['user']['geo_enabled']=1 json[12]['user']['profile_link_color']=f2afcf json[12]['user']['description']=青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。 json[12]['user']['location']=カワタマ or オモサン json[12]['user']['profile_sidebar_border_color']=8350a1 json[12]['user']['followers_count']=614 json[12]['user']['follow_request_sent']= json[12]['user']['time_zone']=Tokyo json[12]['user']['friends_count']=527 json[12]['user']['url']=http://phpjavascriptroom.com/ json[12]['user']['is_translator']= json[12]['user']['statuses_count']=4976 json[12]['user']['profile_use_background_image']=1 json[12]['user']['favourites_count']=440 json[12]['user']['following']=1 json[12]['user']['notifications']= json[12]['user']['created_at']=Sat Aug 04 05:52:33 +0000 2007 json[12]['user']['profile_background_color']=8350a1 json[12]['user']['profile_background_image_url']=http://a1.twimg.com/profile_background_images/187449144/02.png json[12]['user']['listed_count']=51 json[12]['user']['protected']= json[12]['user']['profile_image_url']=http://a0.twimg.com/profile_images/1202496271/usa_normal.png json[12]['user']['id_str']=7948862 json[12]['user']['profile_text_color']=f2afcf json[12]['user']['name']=つんつ json[12]['user']['profile_sidebar_fill_color']=8350a1 json[12]['user']['screen_name']=cocoism json[12]['user']['id']=7948862 json[12]['user']['default_profile']= json[12]['user']['profile_background_tile']=1 json[12]['user']['utc_offset']=32400 json[12]['retweet_count']=0 json[12]['id']=7.24725131453E+16 json[12]['in_reply_to_screen_name']= json[13]['in_reply_to_status_id_str']= json[13]['text']=GIGAZINE - Wireless Japan 2011 NTT DOCOMO Special Site http://docomo-exhibition.jp/wj2011/sp/index.html json[13]['contributors']= json[13]['place']= json[13]['retweeted']= json[13]['in_reply_to_user_id']= json[13]['in_reply_to_user_id_str']= json[13]['coordinates']= json[13]['geo']= json[13]['truncated']= json[13]['source']=MobileRSS json[13]['created_at']=Mon May 23 01:09:37 +0000 2011 json[13]['in_reply_to_status_id']= json[13]['id_str']=72469198202347520 json[13]['favorited']= json[13]['user']['default_profile_image']= json[13]['user']['contributors_enabled']= json[13]['user']['lang']=ja json[13]['user']['show_all_inline_media']=1 json[13]['user']['verified']= json[13]['user']['geo_enabled']=1 json[13]['user']['profile_link_color']=f2afcf json[13]['user']['description']=青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。 json[13]['user']['location']=カワタマ or オモサン json[13]['user']['profile_sidebar_border_color']=8350a1 json[13]['user']['followers_count']=614 json[13]['user']['follow_request_sent']= json[13]['user']['time_zone']=Tokyo json[13]['user']['friends_count']=527 json[13]['user']['url']=http://phpjavascriptroom.com/ json[13]['user']['is_translator']= json[13]['user']['statuses_count']=4976 json[13]['user']['profile_use_background_image']=1 json[13]['user']['favourites_count']=440 json[13]['user']['following']=1 json[13]['user']['notifications']= json[13]['user']['created_at']=Sat Aug 04 05:52:33 +0000 2007 json[13]['user']['profile_background_color']=8350a1 json[13]['user']['profile_background_image_url']=http://a1.twimg.com/profile_background_images/187449144/02.png json[13]['user']['listed_count']=51 json[13]['user']['protected']= json[13]['user']['profile_image_url']=http://a0.twimg.com/profile_images/1202496271/usa_normal.png json[13]['user']['id_str']=7948862 json[13]['user']['profile_text_color']=f2afcf json[13]['user']['name']=つんつ json[13]['user']['profile_sidebar_fill_color']=8350a1 json[13]['user']['screen_name']=cocoism json[13]['user']['id']=7948862 json[13]['user']['default_profile']= json[13]['user']['profile_background_tile']=1 json[13]['user']['utc_offset']=32400 json[13]['retweet_count']=0 json[13]['id']=7.24691982023E+16 json[13]['in_reply_to_screen_name']= json[14]['in_reply_to_status_id_str']= json[14]['text']=Daily - cocoism is out! http://bit.ly/dSxEtg ▸ Top stories today via @takezo76 json[14]['contributors']= json[14]['place']= json[14]['retweeted']= json[14]['in_reply_to_user_id']= json[14]['in_reply_to_user_id_str']= json[14]['coordinates']= json[14]['geo']= json[14]['truncated']= json[14]['source']=Paper.li json[14]['created_at']=Sun May 22 21:31:57 +0000 2011 json[14]['in_reply_to_status_id']= json[14]['id_str']=72414418079711232 json[14]['favorited']= json[14]['user']['default_profile_image']= json[14]['user']['contributors_enabled']= json[14]['user']['lang']=ja json[14]['user']['show_all_inline_media']=1 json[14]['user']['verified']= json[14]['user']['geo_enabled']=1 json[14]['user']['profile_link_color']=f2afcf json[14]['user']['description']=青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。 json[14]['user']['location']=カワタマ or オモサン json[14]['user']['profile_sidebar_border_color']=8350a1 json[14]['user']['followers_count']=614 json[14]['user']['follow_request_sent']= json[14]['user']['time_zone']=Tokyo json[14]['user']['friends_count']=527 json[14]['user']['url']=http://phpjavascriptroom.com/ json[14]['user']['is_translator']= json[14]['user']['statuses_count']=4976 json[14]['user']['profile_use_background_image']=1 json[14]['user']['favourites_count']=440 json[14]['user']['following']=1 json[14]['user']['notifications']= json[14]['user']['created_at']=Sat Aug 04 05:52:33 +0000 2007 json[14]['user']['profile_background_color']=8350a1 json[14]['user']['profile_background_image_url']=http://a1.twimg.com/profile_background_images/187449144/02.png json[14]['user']['listed_count']=51 json[14]['user']['protected']= json[14]['user']['profile_image_url']=http://a0.twimg.com/profile_images/1202496271/usa_normal.png json[14]['user']['id_str']=7948862 json[14]['user']['profile_text_color']=f2afcf json[14]['user']['name']=つんつ json[14]['user']['profile_sidebar_fill_color']=8350a1 json[14]['user']['screen_name']=cocoism json[14]['user']['id']=7948862 json[14]['user']['default_profile']= json[14]['user']['profile_background_tile']=1 json[14]['user']['utc_offset']=32400 json[14]['retweet_count']=0 json[14]['id']=7.24144180797E+16 json[14]['in_reply_to_screen_name']= json[15]['in_reply_to_status_id_str']= json[15]['text']=facebookページアカウントで見てると、いいねボタンがプロフ画像(・・・のアカウントに切り替えてログイン)になる現象なおらないのかしら。。。 json[15]['contributors']= json[15]['place']= json[15]['retweeted']= json[15]['in_reply_to_user_id']= json[15]['in_reply_to_user_id_str']= json[15]['coordinates']= json[15]['geo']= json[15]['truncated']= json[15]['source']=HootSuite json[15]['created_at']=Sun May 22 15:13:10 +0000 2011 json[15]['in_reply_to_status_id']= json[15]['id_str']=72319094711533568 json[15]['favorited']= json[15]['user']['default_profile_image']= json[15]['user']['contributors_enabled']= json[15]['user']['lang']=ja json[15]['user']['show_all_inline_media']=1 json[15]['user']['verified']= json[15]['user']['geo_enabled']=1 json[15]['user']['profile_link_color']=f2afcf json[15]['user']['description']=青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。 json[15]['user']['location']=カワタマ or オモサン json[15]['user']['profile_sidebar_border_color']=8350a1 json[15]['user']['followers_count']=614 json[15]['user']['follow_request_sent']= json[15]['user']['time_zone']=Tokyo json[15]['user']['friends_count']=527 json[15]['user']['url']=http://phpjavascriptroom.com/ json[15]['user']['is_translator']= json[15]['user']['statuses_count']=4976 json[15]['user']['profile_use_background_image']=1 json[15]['user']['favourites_count']=440 json[15]['user']['following']=1 json[15]['user']['notifications']= json[15]['user']['created_at']=Sat Aug 04 05:52:33 +0000 2007 json[15]['user']['profile_background_color']=8350a1 json[15]['user']['profile_background_image_url']=http://a1.twimg.com/profile_background_images/187449144/02.png json[15]['user']['listed_count']=51 json[15]['user']['protected']= json[15]['user']['profile_image_url']=http://a0.twimg.com/profile_images/1202496271/usa_normal.png json[15]['user']['id_str']=7948862 json[15]['user']['profile_text_color']=f2afcf json[15]['user']['name']=つんつ json[15]['user']['profile_sidebar_fill_color']=8350a1 json[15]['user']['screen_name']=cocoism json[15]['user']['id']=7948862 json[15]['user']['default_profile']= json[15]['user']['profile_background_tile']=1 json[15]['user']['utc_offset']=32400 json[15]['retweet_count']=0 json[15]['id']=7.23190947115E+16 json[15]['in_reply_to_screen_name']= json[16]['in_reply_to_status_id_str']= json[16]['text']=Flickrのトップ変わった!? - Welcome to Flickr - Photo Sharing http://ow.ly/50aqh json[16]['contributors']= json[16]['place']= json[16]['retweeted']= json[16]['in_reply_to_user_id']= json[16]['in_reply_to_user_id_str']= json[16]['coordinates']= json[16]['geo']= json[16]['truncated']= json[16]['source']=HootSuite json[16]['created_at']=Sun May 22 14:51:41 +0000 2011 json[16]['in_reply_to_status_id']= json[16]['id_str']=72313686601113601 json[16]['favorited']= json[16]['user']['contributors_enabled']= json[16]['user']['lang']=ja json[16]['user']['verified']= json[16]['user']['profile_link_color']=f2afcf json[16]['user']['description']=青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。 json[16]['user']['location']=カワタマ or オモサン json[16]['user']['default_profile_image']= json[16]['user']['show_all_inline_media']=1 json[16]['user']['geo_enabled']=1 json[16]['user']['profile_sidebar_border_color']=8350a1 json[16]['user']['followers_count']=613 json[16]['user']['time_zone']=Tokyo json[16]['user']['friends_count']=520 json[16]['user']['url']=http://phpjavascriptroom.com/ json[16]['user']['profile_use_background_image']=1 json[16]['user']['favourites_count']=440 json[16]['user']['default_profile']= json[16]['user']['follow_request_sent']= json[16]['user']['statuses_count']=4960 json[16]['user']['following']= json[16]['user']['notifications']= json[16]['user']['created_at']=Sat Aug 04 05:52:33 +0000 2007 json[16]['user']['profile_background_color']=8350a1 json[16]['user']['is_translator']= json[16]['user']['profile_background_image_url']=http://a1.twimg.com/profile_background_images/187449144/02.png json[16]['user']['protected']= json[16]['user']['profile_image_url']=http://a0.twimg.com/profile_images/1202496271/usa_normal.png json[16]['user']['id_str']=7948862 json[16]['user']['profile_text_color']=f2afcf json[16]['user']['name']=つんつ json[16]['user']['listed_count']=51 json[16]['user']['profile_sidebar_fill_color']=8350a1 json[16]['user']['screen_name']=cocoism json[16]['user']['id']=7948862 json[16]['user']['profile_background_tile']=1 json[16]['user']['utc_offset']=32400 json[16]['retweet_count']=0 json[16]['id']=7.23136866011E+16 json[16]['in_reply_to_screen_name']= json[17]['in_reply_to_status_id_str']= json[17]['text']=Flickrのトップ変わった? - Welcome to Flickr - Photo Sharing http://ow.ly/50apa json[17]['contributors']= json[17]['place']= json[17]['retweeted']= json[17]['in_reply_to_user_id']= json[17]['in_reply_to_user_id_str']= json[17]['coordinates']= json[17]['geo']= json[17]['truncated']= json[17]['source']=HootSuite json[17]['created_at']=Sun May 22 14:50:52 +0000 2011 json[17]['in_reply_to_status_id']= json[17]['id_str']=72313483206729728 json[17]['favorited']= json[17]['user']['default_profile_image']= json[17]['user']['contributors_enabled']= json[17]['user']['lang']=ja json[17]['user']['show_all_inline_media']=1 json[17]['user']['verified']= json[17]['user']['geo_enabled']=1 json[17]['user']['profile_link_color']=f2afcf json[17]['user']['description']=青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。 json[17]['user']['location']=カワタマ or オモサン json[17]['user']['profile_sidebar_border_color']=8350a1 json[17]['user']['followers_count']=614 json[17]['user']['follow_request_sent']= json[17]['user']['time_zone']=Tokyo json[17]['user']['friends_count']=527 json[17]['user']['url']=http://phpjavascriptroom.com/ json[17]['user']['is_translator']= json[17]['user']['statuses_count']=4976 json[17]['user']['profile_use_background_image']=1 json[17]['user']['favourites_count']=440 json[17]['user']['following']=1 json[17]['user']['notifications']= json[17]['user']['created_at']=Sat Aug 04 05:52:33 +0000 2007 json[17]['user']['profile_background_color']=8350a1 json[17]['user']['profile_background_image_url']=http://a1.twimg.com/profile_background_images/187449144/02.png json[17]['user']['listed_count']=51 json[17]['user']['protected']= json[17]['user']['profile_image_url']=http://a0.twimg.com/profile_images/1202496271/usa_normal.png json[17]['user']['id_str']=7948862 json[17]['user']['profile_text_color']=f2afcf json[17]['user']['name']=つんつ json[17]['user']['profile_sidebar_fill_color']=8350a1 json[17]['user']['screen_name']=cocoism json[17]['user']['id']=7948862 json[17]['user']['default_profile']= json[17]['user']['profile_background_tile']=1 json[17]['user']['utc_offset']=32400 json[17]['retweet_count']=0 json[17]['id']=7.23134832067E+16 json[17]['in_reply_to_screen_name']= json[18]['in_reply_to_status_id_str']= json[18]['text']=IMGSHRのChromeエクステンションはいいかも!見てるページの画像を抽出してくれるし、ちゃんと引用元のURLも表示してくれてる。 json[18]['contributors']= json[18]['place']= json[18]['retweeted']= json[18]['in_reply_to_user_id']= json[18]['in_reply_to_user_id_str']= json[18]['coordinates']= json[18]['geo']= json[18]['truncated']= json[18]['source']=Tweet Button json[18]['created_at']=Sun May 22 14:46:31 +0000 2011 json[18]['in_reply_to_status_id']= json[18]['id_str']=72312389411934209 json[18]['favorited']= json[18]['user']['default_profile_image']= json[18]['user']['contributors_enabled']= json[18]['user']['lang']=ja json[18]['user']['show_all_inline_media']=1 json[18]['user']['verified']= json[18]['user']['geo_enabled']=1 json[18]['user']['profile_link_color']=f2afcf json[18]['user']['description']=青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。 json[18]['user']['location']=カワタマ or オモサン json[18]['user']['profile_sidebar_border_color']=8350a1 json[18]['user']['followers_count']=614 json[18]['user']['follow_request_sent']= json[18]['user']['time_zone']=Tokyo json[18]['user']['friends_count']=527 json[18]['user']['url']=http://phpjavascriptroom.com/ json[18]['user']['is_translator']= json[18]['user']['statuses_count']=4976 json[18]['user']['profile_use_background_image']=1 json[18]['user']['favourites_count']=440 json[18]['user']['following']=1 json[18]['user']['notifications']= json[18]['user']['created_at']=Sat Aug 04 05:52:33 +0000 2007 json[18]['user']['profile_background_color']=8350a1 json[18]['user']['profile_background_image_url']=http://a1.twimg.com/profile_background_images/187449144/02.png json[18]['user']['listed_count']=51 json[18]['user']['protected']= json[18]['user']['profile_image_url']=http://a0.twimg.com/profile_images/1202496271/usa_normal.png json[18]['user']['id_str']=7948862 json[18]['user']['profile_text_color']=f2afcf json[18]['user']['name']=つんつ json[18]['user']['profile_sidebar_fill_color']=8350a1 json[18]['user']['screen_name']=cocoism json[18]['user']['id']=7948862 json[18]['user']['default_profile']= json[18]['user']['profile_background_tile']=1 json[18]['user']['utc_offset']=32400 json[18]['retweet_count']=0 json[18]['id']=7.23123894119E+16 json[18]['in_reply_to_screen_name']= json[19]['in_reply_to_status_id_str']= json[19]['text']=へぇと思って試してたら、メール投稿で即効エラーが。。。 - IMGSHR(イメージシェア)/1クリックでソーシャルシェア http://t.co/7yPVFLX via @imgshr json[19]['contributors']= json[19]['place']= json[19]['retweeted']= json[19]['in_reply_to_user_id']= json[19]['in_reply_to_user_id_str']= json[19]['coordinates']= json[19]['geo']= json[19]['truncated']= json[19]['source']=Tweet Button json[19]['created_at']=Sun May 22 14:40:52 +0000 2011 json[19]['in_reply_to_status_id']= json[19]['id_str']=72310966083268608 json[19]['favorited']= json[19]['user']['default_profile_image']= json[19]['user']['contributors_enabled']= json[19]['user']['lang']=ja json[19]['user']['show_all_inline_media']=1 json[19]['user']['verified']= json[19]['user']['geo_enabled']=1 json[19]['user']['profile_link_color']=f2afcf json[19]['user']['description']=青山でWeb系のお仕事してます。デザイナーズレストランははるか昔に卒業済。芋焼酎と焼鳥が大好きで居心地のいい呑み屋でおやじ談義するのがライフワーク。最近は日本酒をお勉強中。家では大人しく猛犬チワワのママしてます。iPhone4/Xperia所有。 json[19]['user']['location']=カワタマ or オモサン json[19]['user']['profile_sidebar_border_color']=8350a1 json[19]['user']['followers_count']=614 json[19]['user']['follow_request_sent']= json[19]['user']['time_zone']=Tokyo json[19]['user']['friends_count']=527 json[19]['user']['url']=http://phpjavascriptroom.com/ json[19]['user']['is_translator']= json[19]['user']['statuses_count']=4976 json[19]['user']['profile_use_background_image']=1 json[19]['user']['favourites_count']=440 json[19]['user']['following']=1 json[19]['user']['notifications']= json[19]['user']['created_at']=Sat Aug 04 05:52:33 +0000 2007 json[19]['user']['profile_background_color']=8350a1 json[19]['user']['profile_background_image_url']=http://a1.twimg.com/profile_background_images/187449144/02.png json[19]['user']['listed_count']=51 json[19]['user']['protected']= json[19]['user']['profile_image_url']=http://a0.twimg.com/profile_images/1202496271/usa_normal.png json[19]['user']['id_str']=7948862 json[19]['user']['profile_text_color']=f2afcf json[19]['user']['name']=つんつ json[19]['user']['profile_sidebar_fill_color']=8350a1 json[19]['user']['screen_name']=cocoism json[19]['user']['id']=7948862 json[19]['user']['default_profile']= json[19]['user']['profile_background_tile']=1 json[19]['user']['utc_offset']=32400 json[19]['retweet_count']=0 json[19]['id']=7.23109660833E+16 json[19]['in_reply_to_screen_name']=
設置サンプル
リストID「43044556」の情報を取得します。
設置サンプルサンプルを見る
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="Content-Language" content="ja" /> <meta http-equiv="Content-Script-Type" content="text/javascript" /> <meta http-equiv="Content-Style-Type" content="text/css" /> <meta http-equiv="imagetoolbar" content="no" /> <title>Twitter REST API:リスト関連:GET lists/statuses(特定リストに所属するメンバーのタイムラインを取得) | 設置サンプル</title> <link rel="stylesheet" type="text/css" href="/content/lib/global.css" /> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script> <script type="text/javascript" src="/content/lib/jquery/jquery.jsonp.js"></script> <!-- JS --> <script type="text/javascript"> $(function(){ var url="http://api.twitter.com/1/lists/statuses.json?list_id=43044556&trim_user=t&callback={callback}"; $.getJSONP(url, function(json){ var s=""; $.each(json, function(i, item){ s+="<li>json[i].in_reply_to_status_id_str = "+json[i].in_reply_to_status_id_str+"</li>"; s+="<li>json[i].coordinates = "+json[i].coordinates+"</li>"; s+="<li>json[i].geo = "+json[i].geo+"</li>"; s+="<li>json[i].contributors = "+json[i].contributors+"</li>"; s+="<li>json[i].retweeted = "+json[i].retweeted+"</li>"; s+="<li>json[i].in_reply_to_user_id = "+json[i].in_reply_to_user_id+"</li>"; s+="<li>json[i].in_reply_to_user_id_str = "+json[i].in_reply_to_user_id_str+"</li>"; s+="<li>json[i].truncated = "+json[i].truncated+"</li>"; s+="<li>json[i].text = "+json[i].text+"</li>"; s+="<li>json[i].place = "+json[i].place+"</li>"; s+="<li>json[i].in_reply_to_status_id = "+json[i].in_reply_to_status_id+"</li>"; s+="<li>json[i].id = "+json[i].id+"</li>"; s+="<li>json[i].id_str = "+json[i].id_str+"</li>"; s+="<li>json[i].favorited = "+json[i].favorited+"</li>"; s+="<li>json[i].source = "+json[i].source+"</li>"; s+="<li>json[i].retweet_count = "+json[i].retweet_count+"</li>"; s+="<li>json[i].in_reply_to_screen_name = "+json[i].in_reply_to_screen_name+"</li>"; s+="<li>json[i].created_at = "+json[i].created_at+"</li>"; s+="<li>json[i].user"; s+="<ul>"; s+="<li>json[i].user.is_translator = "+json[i].user.is_translator+"</li>"; s+="<li>json[i].user.profile_background_image_url = "+json[i].user.profile_background_image_url+"</li>"; s+="<li>json[i].user.listed_count = "+json[i].user.listed_count+"</li>"; s+="<li>json[i].user.contributors_enabled = "+json[i].user.contributors_enabled+"</li>"; s+="<li>json[i].user.following = "+json[i].user.following+"</li>"; s+="<li>json[i].user.profile_image_url = "+json[i].user.profile_image_url+"</li>"; s+="<li>json[i].user.description = "+json[i].user.description+"</li>"; s+="<li>json[i].user.id_str = "+json[i].user.id_str+"</li>"; s+="<li>json[i].user.default_profile = "+json[i].user.default_profile+"</li>"; s+="<li>json[i].user.profile_text_color = "+json[i].user.profile_text_color+"</li>"; s+="<li>json[i].user.followers_count = "+json[i].user.followers_count+"</li>"; s+="<li>json[i].user.profile_sidebar_fill_color = "+json[i].user.profile_sidebar_fill_color+"</li>"; s+="<li>json[i].user.screen_name = "+json[i].user.screen_name+"</li>"; s+="<li>json[i].user.profile_background_tile = "+json[i].user.profile_background_tile+"</li>"; s+="<li>json[i].user.default_profile_image = "+json[i].user.default_profile_image+"</li>"; s+="<li>json[i].user.show_all_inline_media = "+json[i].user.show_all_inline_media+"</li>"; s+="<li>json[i].user.geo_enabled = "+json[i].user.geo_enabled+"</li>"; s+="<li>json[i].user.time_zone = "+json[i].user.time_zone+"</li>"; s+="<li>json[i].user.profile_link_color = "+json[i].user.profile_link_color+"</li>"; s+="<li>json[i].user.location = "+json[i].user.location+"</li>"; s+="<li>json[i].user.lang = "+json[i].user.lang+"</li>"; s+="<li>json[i].user.profile_sidebar_border_color = "+json[i].user.profile_sidebar_border_color+"</li>"; s+="<li>json[i].user.protected = "+json[i].user.protected+"</li>"; s+="<li>json[i].user.follow_request_sent = "+json[i].user.follow_request_sent+"</li>"; s+="<li>json[i].user.friends_count = "+json[i].user.friends_count+"</li>"; s+="<li>json[i].user.url = "+json[i].user.url+"</li>"; s+="<li>json[i].user.name = "+json[i].user.name+"</li>"; s+="<li>json[i].user.statuses_count = "+json[i].user.statuses_count+"</li>"; s+="<li>json[i].user.profile_use_background_image = "+json[i].user.profile_use_background_image+"</li>"; s+="<li>json[i].user.id = "+json[i].user.id+"</li>"; s+="<li>json[i].user.notifications = "+json[i].user.notifications+"</li>"; s+="<li>json[i].user.utc_offset = "+json[i].user.utc_offset+"</li>"; s+="<li>json[i].user.favourites_count = "+json[i].user.favourites_count+"</li>"; s+="<li>json[i].user.created_at = "+json[i].user.created_at+"</li>"; s+="<li>json[i].user.profile_background_color = "+json[i].user.profile_background_color+"</li>"; s+="</ul>"; s+="</li>"; }); $("#recent").html("<ul>"+s+"</ul>"); }); }); </script> </head> <body> <div id="wrap"> <h1>Twitter REST API:リスト関連:GET lists/statuses(特定リストに所属するメンバーのタイムラインを取得)| 設置サンプル</h1> <p>リストID「43044556」のタイムラインを取得します。このAPIは認証不要です。</p> <!-- CODE --> <div id="recent"></div> <!-- / CODE --> </div> </body> </html>
lists/memberships
特定のユーザーが追加されているリスト一覧を取得(認証不要)
2009/7/18
http://api.twitter.com/1/lists/memberships.[xml|json]
指定したユーザーがメンバーになっているリスト一覧を取得します。
パラメーター
パラメーター | 説明 | |
---|---|---|
user_id | 必須 | ユーザーIDを指定。有効なユーザーIDを明確に指定したい場合に使用。 例)http://api.twitter.com/1/lists.xml?user_id=12345 |
screen_name | 必須 | スクリーンネームを指定。ユーザーIDとスクリーンネームが数値で紛らわしい場合に有用。 例)http://api.twitter.com/1/lists.xml?screen_name=cocoism |
cursor | 任意 | 結果をページ分けを指定します。1ページあたり20リストが含まれます。
ページの始まりには「-1」を指定します。前後ページは、取得したデータの中にあるnext_cursorまたはprevious_cursor属性で参照できます。 例)http://api.twitter.com/1/twitterapi/lists/memberships.xml?cursor=-1 例)http://api.twitter.com/1/twitterapi/lists/memberships.xml?cursor=-1300794057949944903 |
filter_to_owned_lists | 任意 |
true,t,1のいずれかを指定すると、認証ユーザーが作成したリストが返ります。
書くリストのメンバーはuser_idかscreen_nameで返ります。 例)http://api.twitter.com/1/lists/memberships.xml?filter_to_owned_lists=true |
取得サンプル(XML/JSON)
スクリーンネーム「cocoism」がメンバーになっているリストを取得。
memberships.xml
<?xml version="1.0" encoding="UTF-8"?> <lists_list> <lists type="array"> <list> <id>44948157</id> <name>Main</name> <full_name>@t__z/main</full_name> <slug>main</slug> <description>フォロー自重しないと僕のTLはこうなる</description> <subscriber_count>0</subscriber_count> <member_count>169</member_count> <uri>/t__z/main</uri> <following>false</following> <mode>public</mode> <user> <id>111172200</id> <name>T-Z/ティゼ</name> <screen_name>t__z</screen_name> <location>日の当たる場所</location> <description>何か考えてそうで何も考えていない生物だよ! 最初の挨拶以降はタメ語の方が好きかもw あと、土日休は基本ツイートおやすみの予定っす! アイコンは@satoukabiさんの配布アイコンを使用しています(`・ω・´)</description> <profile_image_url>http://a0.twimg.com/profile_images/1324752216/porin1_normal.png</profile_image_url> <url></url> <protected>false</protected> <followers_count>152</followers_count> <profile_background_color>C6E2EE</profile_background_color> <profile_text_color>663B12</profile_text_color> <profile_link_color>1F98C7</profile_link_color> <profile_sidebar_fill_color>DAECF4</profile_sidebar_fill_color> <profile_sidebar_border_color>C6E2EE</profile_sidebar_border_color> <friends_count>136</friends_count> <created_at>Thu Feb 04 01:16:45 +0000 2010</created_at> <favourites_count>2263</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a1.twimg.com/images/themes/theme2/bg.gif</profile_background_image_url> <profile_background_tile>false</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>false</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>10457</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>11</listed_count> <show_all_inline_media>false</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> </list> <list> <id>14582476</id> <name>PC-Dev.</name> <full_name>@ya426/pc-dev</full_name> <slug>pc-dev</slug> <description>Linuxユーザ・ハウツー、アプリ・ウェブ開発、開発言語(PHP,Perl,Java,C等)</description> <subscriber_count>3</subscriber_count> <member_count>120</member_count> <uri>/ya426/pc-dev</uri> <following>false</following> <mode>public</mode> <user> <id>119938780</id> <name>御火焚の某</name> <screen_name>ya426</screen_name> <location>35.6262,140.1024 西千葉←甲府←多摩</location> <description>○現在千葉市在住(その前は甲府) ○趣味>写真(デジカメもフィルムも),林道ドライブ,散歩,料理,革細工,銀粘土,プログラミング(PHP,Perl)・Linux鯖構築・Web構築,電子工作,アマチュア無線(7n4uws),醗酵学,… ○千葉大 ※DMは殆ど見ないので送らないで!(@付投稿は見てます)</description> <profile_image_url>http://a1.twimg.com/profile_images/1123577379/100910-2_normal.PNG</profile_image_url> <url>http://www.s-ht.com/~7n4uws/</url> <protected>false</protected> <followers_count>4786</followers_count> <profile_background_color>131516</profile_background_color> <profile_text_color>333333</profile_text_color> <profile_link_color>009999</profile_link_color> <profile_sidebar_fill_color>efefef</profile_sidebar_fill_color> <profile_sidebar_border_color>eeeeee</profile_sidebar_border_color> <friends_count>2771</friends_count> <created_at>Fri Mar 05 00:40:14 +0000 2010</created_at> <favourites_count>1</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a1.twimg.com/images/themes/theme14/bg.gif</profile_background_image_url> <profile_background_tile>true</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>false</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>15648</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>150</listed_count> <show_all_inline_media>true</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> </list> <list> <id>25680556</id> <name>design</name> <full_name>@wani_love/design</full_name> <slug>design</slug> <description>web関連とか...</description> <subscriber_count>1</subscriber_count> <member_count>8</member_count> <uri>/wani_love/design</uri> <following>false</following> <mode>public</mode> <user> <id>140678304</id> <name>わにらぶ</name> <screen_name>wani_love</screen_name> <location>ワニが住まう楽園</location> <description>爬虫類というかワニを愛してやまない、ただのヲタク(´∀`*)ゲーム、マンガ、アニメ大好きです!仕事はweb関連のことしてます。FlashのASがちょっと苦手…。主に仕事中の愚痴とかやるせなさとかをぶちまけてたり。。。フォロー&ブロックお気軽にどうぞー。フォロー返し希望の場合は@付けて知らせてやってください(´ω`*)</description> <profile_image_url>http://a1.twimg.com/profile_images/1208127407/wani_love_normal.gif</profile_image_url> <url></url> <protected>false</protected> <followers_count>31</followers_count> <profile_background_color>666c67</profile_background_color> <profile_text_color>504946</profile_text_color> <profile_link_color>00adcc</profile_link_color> <profile_sidebar_fill_color>f7f6f5</profile_sidebar_fill_color> <profile_sidebar_border_color>d4d9df</profile_sidebar_border_color> <friends_count>40</friends_count> <created_at>Thu May 06 03:58:38 +0000 2010</created_at> <favourites_count>7</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Osaka</time_zone> <profile_background_image_url>http://a0.twimg.com/profile_background_images/139828923/bg.gif</profile_background_image_url> <profile_background_tile>false</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>false</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>2164</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>2</listed_count> <show_all_inline_media>false</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> </list> <list> <id>40003117</id> <name>Web</name> <full_name>@tatsuya529/web</full_name> <slug>web</slug> <description>Webデザイン関連</description> <subscriber_count>0</subscriber_count> <member_count>31</member_count> <uri>/tatsuya529/web</uri> <following>false</following> <mode>public</mode> <user> <id>126381455</id> <name>Koike Tatsuya</name> <screen_name>tatsuya529</screen_name> <location>東京都杉並区</location> <description>Webデザイナーがんばり中</description> <profile_image_url>http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png</profile_image_url> <url></url> <protected>false</protected> <followers_count>20</followers_count> <profile_background_color>709397</profile_background_color> <profile_text_color>333333</profile_text_color> <profile_link_color>FF3300</profile_link_color> <profile_sidebar_fill_color>A0C5C7</profile_sidebar_fill_color> <profile_sidebar_border_color>86A4A6</profile_sidebar_border_color> <friends_count>45</friends_count> <created_at>Thu Mar 25 17:53:30 +0000 2010</created_at> <favourites_count>14</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a1.twimg.com/images/themes/theme6/bg.gif</profile_background_image_url> <profile_background_tile>false</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>true</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>32</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>0</listed_count> <show_all_inline_media>false</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>true</default_profile_image> <is_translator>false</is_translator> </user> </list> <list> <id>13042575</id> <name>o__it_works</name> <full_name>@y_kam/o-it-works</full_name> <slug>o-it-works</slug> <description>IT workers</description> <subscriber_count>0</subscriber_count> <member_count>32</member_count> <uri>/y_kam/o-it-works</uri> <following>false</following> <mode>public</mode> <user> <id>17337772</id> <name>(ゆ・ー・)や / Yuya</name> <screen_name>y_kam</screen_name> <location>Tokyo / 東京←大分←宮崎←都城←大分←別府</location> <description>26歳♂A型蠍座11.19生/aikoジャンキー/web的な人/Liveジャンキー/安藤裕子/YUIYUKA/miwa/チャットベボベサカナねごと時雨理論/1000say/エレクトロポップ&ロック/川嶋/いきもの/インディアマ路上系/2次元も/mc1242</description> <profile_image_url>http://a2.twimg.com/profile_images/1277968538/image_normal.jpg</profile_image_url> <url>http://yue-music.tumblr.com/</url> <protected>false</protected> <followers_count>481</followers_count> <profile_background_color>0099B9</profile_background_color> <profile_text_color>3C3940</profile_text_color> <profile_link_color>0099B9</profile_link_color> <profile_sidebar_fill_color>95E8EC</profile_sidebar_fill_color> <profile_sidebar_border_color>5ED4DC</profile_sidebar_border_color> <friends_count>652</friends_count> <created_at>Wed Nov 12 11:52:34 +0000 2008</created_at> <favourites_count>1868</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a1.twimg.com/images/themes/theme4/bg.gif</profile_background_image_url> <profile_background_tile>false</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>true</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>41488</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>73</listed_count> <show_all_inline_media>false</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> </list> <list> <id>15866301</id> <name>IT</name> <full_name>@digi_book/it</full_name> <slug>it</slug> <description></description> <subscriber_count>13</subscriber_count> <member_count>326</member_count> <uri>/digi_book/it</uri> <following>false</following> <mode>public</mode> <user> <id>123413513</id> <name>かな</name> <screen_name>digi_book</screen_name> <location></location> <description>電子書籍・電子出版の でじたる書房 の公式アカウント担当かなです。 この140字という小さな世界で、でじたる書房という未知の可能性を持つサイトの魅力と、未来ある作家さんの魅力を最大限に伝えていけたらと思います。 読者様が大切な一冊を見つけられるお手伝いができればと思います。 どうぞよろしくお願いします。</description> <profile_image_url>http://a2.twimg.com/profile_images/1347963548/icon13027498658566_normal.jpg</profile_image_url> <url>http://www.digbook.jp/</url> <protected>false</protected> <followers_count>2458</followers_count> <profile_background_color>9AE4E8</profile_background_color> <profile_text_color>333333</profile_text_color> <profile_link_color>0084B4</profile_link_color> <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color> <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color> <friends_count>2667</friends_count> <created_at>Tue Mar 16 01:16:49 +0000 2010</created_at> <favourites_count>22</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a1.twimg.com/images/themes/theme16/bg.gif</profile_background_image_url> <profile_background_tile>false</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>false</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>3528</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>119</listed_count> <show_all_inline_media>false</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> </list> <list> <id>36225789</id> <name>webcreaters</name> <full_name>@unimakura/webcreaters</full_name> <slug>webcreaters</slug> <description>ウェブ系のみなみなさまー</description> <subscriber_count>0</subscriber_count> <member_count>22</member_count> <uri>/unimakura/webcreaters</uri> <following>false</following> <mode>public</mode> <user> <id>59024283</id> <name>うにまくら</name> <screen_name>unimakura</screen_name> <location>兵庫県西宮市</location> <description>見習いデザイナー兼WEBプログラマー。周りの色んな人に助言をもらいながら、デザインの修行中です。ゆっくり歩き続ければ、いつか遠くへ行けるさっ。あまりリアルタイムには見ていないので、適当によろしくお願いしますー。</description> <profile_image_url>http://a0.twimg.com/profile_images/1355458381/unimakura_normal.jpg</profile_image_url> <url>http://unimakura.jp</url> <protected>false</protected> <followers_count>117</followers_count> <profile_background_color>EDECE9</profile_background_color> <profile_text_color>634047</profile_text_color> <profile_link_color>088253</profile_link_color> <profile_sidebar_fill_color>E3E2DE</profile_sidebar_fill_color> <profile_sidebar_border_color>D3D2CF</profile_sidebar_border_color> <friends_count>119</friends_count> <created_at>Wed Jul 22 03:42:04 +0000 2009</created_at> <favourites_count>9</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a1.twimg.com/images/themes/theme3/bg.gif</profile_background_image_url> <profile_background_tile>false</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>false</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>3134</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>22</listed_count> <show_all_inline_media>false</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> </list> <list> <id>5899023</id> <name>IT</name> <full_name>@nose_kensuke/it</full_name> <slug>it</slug> <description></description> <subscriber_count>0</subscriber_count> <member_count>41</member_count> <uri>/nose_kensuke/it</uri> <following>false</following> <mode>public</mode> <user> <id>65581940</id> <name>能勢謙介</name> <screen_name>nose_kensuke</screen_name> <location>東京都品川区大井</location> <description>京都府宇治市出身。実家住まい32年ののち転職を機に関東へ。自身も患者であるIDDM(1型糖尿病)を軸に、慢性疾患患者をサポートするプロジェクト「IDDM☆MYSTAR」を推進中。ロードバイクにもハマっているらしいw。最新のFTP(CP)は213W。</description> <profile_image_url>http://a2.twimg.com/profile_images/1288115094/nose_japanwelivestrong_normal.jpg</profile_image_url> <url>http://www.mystar-japan.org/</url> <protected>false</protected> <followers_count>677</followers_count> <profile_background_color>709397</profile_background_color> <profile_text_color>333333</profile_text_color> <profile_link_color>FF3300</profile_link_color> <profile_sidebar_fill_color>A0C5C7</profile_sidebar_fill_color> <profile_sidebar_border_color>86A4A6</profile_sidebar_border_color> <friends_count>1039</friends_count> <created_at>Fri Aug 14 06:49:28 +0000 2009</created_at> <favourites_count>5</favourites_count> <utc_offset>-36000</utc_offset> <time_zone>Hawaii</time_zone> <profile_background_image_url>http://a1.twimg.com/profile_background_images/253167957/MK2N9931.JPG</profile_background_image_url> <profile_background_tile>true</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>true</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>4699</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>68</listed_count> <show_all_inline_media>false</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> </list> <list> <id>29049849</id> <name>Web02</name> <full_name>@hassy_lib/web02</full_name> <slug>web02</slug> <description>Web</description> <subscriber_count>0</subscriber_count> <member_count>48</member_count> <uri>/hassy_lib/web02</uri> <following>false</following> <mode>public</mode> <user> <id>143728611</id> <name>Kazuhiro.H</name> <screen_name>hassy_lib</screen_name> <location>石川県金沢市の辺りでフラフラしたり</location> <description>そこそこWeb関係の仕事のひと。地方出版社。ストイック。書店好き/html/css/jQuery/デザイン/広告好き/歴史/美術/漫画/雑誌/ドライブ/音楽/槇原敬之/Mr.Children/空気公団/学芸員・図書館司書・教員資格所有。書道・イラストはたしなみ程度。 </description> <profile_image_url>http://a0.twimg.com/profile_images/1243033264/icon_normal.png</profile_image_url> <url>http://booklog.jp/users/hassylib</url> <protected>false</protected> <followers_count>276</followers_count> <profile_background_color>C6E2EE</profile_background_color> <profile_text_color>663B12</profile_text_color> <profile_link_color>1F98C7</profile_link_color> <profile_sidebar_fill_color>DAECF4</profile_sidebar_fill_color> <profile_sidebar_border_color>C6E2EE</profile_sidebar_border_color> <friends_count>400</friends_count> <created_at>Fri May 14 07:12:51 +0000 2010</created_at> <favourites_count>9</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a1.twimg.com/images/themes/theme2/bg.gif</profile_background_image_url> <profile_background_tile>false</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>false</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>3793</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>10</listed_count> <show_all_inline_media>false</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> </list> <list> <id>6954742</id> <name>Engineer</name> <full_name>@t__z/engineer</full_name> <slug>engineer</slug> <description>エンジニア~な雰囲気な方々。みんなクリエイティブ!><</description> <subscriber_count>1</subscriber_count> <member_count>120</member_count> <uri>/t__z/engineer</uri> <following>false</following> <mode>public</mode> <user> <id>111172200</id> <name>T-Z/ティゼ</name> <screen_name>t__z</screen_name> <location>日の当たる場所</location> <description>何か考えてそうで何も考えていない生物だよ! 最初の挨拶以降はタメ語の方が好きかもw あと、土日休は基本ツイートおやすみの予定っす! アイコンは@satoukabiさんの配布アイコンを使用しています(`・ω・´)</description> <profile_image_url>http://a0.twimg.com/profile_images/1324752216/porin1_normal.png</profile_image_url> <url></url> <protected>false</protected> <followers_count>152</followers_count> <profile_background_color>C6E2EE</profile_background_color> <profile_text_color>663B12</profile_text_color> <profile_link_color>1F98C7</profile_link_color> <profile_sidebar_fill_color>DAECF4</profile_sidebar_fill_color> <profile_sidebar_border_color>C6E2EE</profile_sidebar_border_color> <friends_count>136</friends_count> <created_at>Thu Feb 04 01:16:45 +0000 2010</created_at> <favourites_count>2264</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a1.twimg.com/images/themes/theme2/bg.gif</profile_background_image_url> <profile_background_tile>false</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>false</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>10464</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>11</listed_count> <show_all_inline_media>false</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> </list> <list> <id>34209852</id> <name>My favstar.fm list</name> <full_name>@kayanoya/my-favstar-fm-list</full_name> <slug>my-favstar-fm-list</slug> <description>My favorite tweeters, curated with help from http://favstar.fm</description> <subscriber_count>0</subscriber_count> <member_count>5</member_count> <uri>/kayanoya/my-favstar-fm-list</uri> <following>false</following> <mode>public</mode> <user> <id>148567067</id> <name>茅乃舎</name> <screen_name>kayanoya</screen_name> <location></location> <description>福岡県粕屋郡久山町にある自然食のレストラン。明太子の椒房庵(@shobo_an)が運営しています。東京ミッドタウンには、茅乃舎の調味料を販売するお店を出しています。あと地元の岩田屋と博多駅デイトスにもお店があります。新商品の情報、店舗のイベント情報、お客様の質問に対する答えなどをつぶやきま~す。</description> <profile_image_url>http://a0.twimg.com/profile_images/1186988441/____normal.jpg</profile_image_url> <url>http://www.kayanoya.com/</url> <protected>false</protected> <followers_count>423</followers_count> <profile_background_color>C0DEED</profile_background_color> <profile_text_color>333333</profile_text_color> <profile_link_color>0084B4</profile_link_color> <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color> <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color> <friends_count>503</friends_count> <created_at>Thu May 27 01:30:09 +0000 2010</created_at> <favourites_count>0</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Osaka</time_zone> <profile_background_image_url>http://a3.twimg.com/images/themes/theme1/bg.png</profile_background_image_url> <profile_background_tile>false</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>false</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>433</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>25</listed_count> <show_all_inline_media>false</show_all_inline_media> <default_profile>true</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> </list> <list> <id>33639414</id> <name>サンプル</name> <full_name>@pjroomer/サンプル</full_name> <slug>サンプル</slug> <description>あいうえおかきくけこあいうえおかきくけこあいうえおかきくけこ</description> <subscriber_count>0</subscriber_count> <member_count>2</member_count> <uri>/pjroomer/サンプル</uri> <following>false</following> <mode>public</mode> <user> <id>55984769</id> <name>つんこ</name> <screen_name>pjroomer</screen_name> <location>Tokyo, Japan</location> <description>てすあか</description> <profile_image_url>http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png</profile_image_url> <url>http://phpjavascriptroom.com</url> <protected>false</protected> <followers_count>8</followers_count> <profile_background_color>C0DEED</profile_background_color> <profile_text_color>ff6699</profile_text_color> <profile_link_color>0084B4</profile_link_color> <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color> <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color> <friends_count>189</friends_count> <created_at>Sun Jul 12 01:37:21 +0000 2009</created_at> <favourites_count>99</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a0.twimg.com/images/themes/theme1/bg.png</profile_background_image_url> <profile_background_tile>false</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>true</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>1425</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>4</listed_count> <show_all_inline_media>false</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>true</default_profile_image> <is_translator>false</is_translator> </user> </list> <list> <id>18276687</id> <name>web reference</name> <full_name>@ye_mon/web-reference</full_name> <slug>web-reference</slug> <description></description> <subscriber_count>7</subscriber_count> <member_count>35</member_count> <uri>/ye_mon/web-reference</uri> <following>false</following> <mode>public</mode> <user> <id>75280787</id> <name>いえもん</name> <screen_name>ye_mon</screen_name> <location></location> <description></description> <profile_image_url>http://a2.twimg.com/profile_images/440455604/large_normal.jpg</profile_image_url> <url>http://twilog.org/ye_mon</url> <protected>false</protected> <followers_count>260</followers_count> <profile_background_color>C0DEED</profile_background_color> <profile_text_color>333333</profile_text_color> <profile_link_color>0084B4</profile_link_color> <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color> <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color> <friends_count>547</friends_count> <created_at>Fri Sep 18 13:33:27 +0000 2009</created_at> <favourites_count>2478</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a0.twimg.com/images/themes/theme1/bg.png</profile_background_image_url> <profile_background_tile>false</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>false</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>3028</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>15</listed_count> <show_all_inline_media>false</show_all_inline_media> <default_profile>true</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> </list> <list> <id>31584658</id> <name>direct</name> <full_name>@amamiNRK/direct</full_name> <slug>direct</slug> <description></description> <subscriber_count>1</subscriber_count> <member_count>36</member_count> <uri>/amamiNRK/direct</uri> <following>false</following> <mode>public</mode> <user> <id>173514986</id> <name>天見のりこ</name> <screen_name>amamiNRK</screen_name> <location></location> <description>漫画、ストーリー、ドラマを作ります。サスペンス、ロマンス、ファンタジーなど。Windows、Androidユーザー。 [Twilog] http://twilog.org/amamiNRK [Twitter-サイト関連-] @tencount2000 </description> <profile_image_url>http://a0.twimg.com/profile_images/1229565945/twitter_icon2_normal.jpg</profile_image_url> <url>http://tencount.main.jp/</url> <protected>false</protected> <followers_count>257</followers_count> <profile_background_color>ffffff</profile_background_color> <profile_text_color>3C3940</profile_text_color> <profile_link_color>0099B9</profile_link_color> <profile_sidebar_fill_color>dedede</profile_sidebar_fill_color> <profile_sidebar_border_color>dedede</profile_sidebar_border_color> <friends_count>256</friends_count> <created_at>Sun Aug 01 17:47:06 +0000 2010</created_at> <favourites_count>325</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a3.twimg.com/profile_background_images/162506678/colorcircles.jpg</profile_background_image_url> <profile_background_tile>false</profile_background_tile> <profile_use_background_image>false</profile_use_background_image> <notifications>false</notifications> <geo_enabled>false</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>14297</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>19</listed_count> <show_all_inline_media>false</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> </list> <list> <id>2982667</id> <name>web and design</name> <full_name>@tokizaki/web-and-design</full_name> <slug>web-and-design</slug> <description></description> <subscriber_count>12</subscriber_count> <member_count>334</member_count> <uri>/tokizaki/web-and-design</uri> <following>false</following> <mode>public</mode> <user> <id>80219603</id> <name>とっきー</name> <screen_name>tokizaki</screen_name> <location>千葉県 船橋市 東船橋</location> <description>Webデザイナーとか名乗りつつWebデザインしたり、紙ものやったり、出張したりするフリーランスです。「Webペンギンの会」会員。 DESIGN Oilファンページはこちら:http://www.facebook.com/pages/DESIGN-Oil/204408912908817</description> <profile_image_url>http://a3.twimg.com/profile_images/1352012789/designoil-001_normal.png</profile_image_url> <url>http://www.design-oil.com/</url> <protected>false</protected> <followers_count>848</followers_count> <profile_background_color>d5c69d</profile_background_color> <profile_text_color>60421b</profile_text_color> <profile_link_color>0094f0</profile_link_color> <profile_sidebar_fill_color>faf9f4</profile_sidebar_fill_color> <profile_sidebar_border_color>cccaca</profile_sidebar_border_color> <friends_count>825</friends_count> <created_at>Tue Oct 06 04:56:31 +0000 2009</created_at> <favourites_count>422</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a2.twimg.com/profile_background_images/195046198/227913088-2.jpg</profile_background_image_url> <profile_background_tile>true</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>false</geo_enabled> <verified>false</verified> <following>true</following> <statuses_count>11913</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>104</listed_count> <show_all_inline_media>false</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> </list> <list> <id>16074715</id> <name>design</name> <full_name>@ayame_san_com/design</full_name> <slug>design</slug> <description>デザインに関わる人々とその周辺。</description> <subscriber_count>17</subscriber_count> <member_count>229</member_count> <uri>/ayame_san_com/design</uri> <following>false</following> <mode>public</mode> <user> <id>112631975</id> <name>feat.Yasuharu Sakata</name> <screen_name>ayame_san_com</screen_name> <location>kobe</location> <description>Creators' Room +eye+主宰。グラフィックデザイナ。1Q84生。奥さんと3人の子ども。COMME des GARCONS/JOJO/EVANGELION/L'Arc〜en〜Ciel/PornoGraffitti/サカナクション/特撮/真保裕一/森博嗣/上遠野浩平。</description> <profile_image_url>http://a1.twimg.com/profile_images/1364733126/DSC_9885_DIC_normal.jpg</profile_image_url> <url>http://ayame-san-com.jimdo.com/</url> <protected>false</protected> <followers_count>634</followers_count> <profile_background_color>ffffff</profile_background_color> <profile_text_color>707070</profile_text_color> <profile_link_color>424242</profile_link_color> <profile_sidebar_fill_color>ffffff</profile_sidebar_fill_color> <profile_sidebar_border_color>ffffff</profile_sidebar_border_color> <friends_count>534</friends_count> <created_at>Tue Feb 09 05:31:13 +0000 2010</created_at> <favourites_count>1196</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Osaka</time_zone> <profile_background_image_url>http://a1.twimg.com/images/themes/theme14/bg.gif</profile_background_image_url> <profile_background_tile>false</profile_background_tile> <profile_use_background_image>false</profile_use_background_image> <notifications>false</notifications> <geo_enabled>false</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>9389</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>73</listed_count> <show_all_inline_media>true</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> </list> <list> <id>20514465</id> <name>hisyotter</name> <full_name>@longroofitter/hisyotter</full_name> <slug>hisyotter</slug> <description>秘書山岡さんの紹介</description> <subscriber_count>2</subscriber_count> <member_count>118</member_count> <uri>/longroofitter/hisyotter</uri> <following>false</following> <mode>public</mode> <user> <id>19338943</id> <name>LONGROOF</name> <screen_name>longroofitter</screen_name> <location>Gifu, Japan</location> <description>long long long roof</description> <profile_image_url>http://a2.twimg.com/profile_images/1295526394/image_normal.jpg</profile_image_url> <url>http://bcphotoshare.com/photos/21898</url> <protected>false</protected> <followers_count>1799</followers_count> <profile_background_color>1A1B1F</profile_background_color> <profile_text_color>666666</profile_text_color> <profile_link_color>2FC2EF</profile_link_color> <profile_sidebar_fill_color>252429</profile_sidebar_fill_color> <profile_sidebar_border_color>181A1E</profile_sidebar_border_color> <friends_count>1694</friends_count> <created_at>Thu Jan 22 13:58:07 +0000 2009</created_at> <favourites_count>3200</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a0.twimg.com/profile_background_images/7210175/531px-Vermeer_The_concert.JPG</profile_background_image_url> <profile_background_tile>false</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>true</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>39395</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>95</listed_count> <show_all_inline_media>true</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> </list> <list> <id>8259659</id> <name>web</name> <full_name>@Rabbitfoot2/web</full_name> <slug>web</slug> <description></description> <subscriber_count>1</subscriber_count> <member_count>67</member_count> <uri>/Rabbitfoot2/web</uri> <following>false</following> <mode>public</mode> <user> <id>74404682</id> <name>ユミ</name> <screen_name>Rabbitfoot2</screen_name> <location>関東</location> <description>自宅でもお仕事しつつ、表参道でWebデザイナーやってます。日々、webデザイン、グラフィックデザイン、DTP、Flash、JAVASCRIPT、SEOなど勉強中。ネザーランドドワーフに癒されてます。フォローは気軽にどうぞ♪</description> <profile_image_url>http://a1.twimg.com/profile_images/730650274/P1000081_normal.JPG</profile_image_url> <url></url> <protected>false</protected> <followers_count>356</followers_count> <profile_background_color>EDECE9</profile_background_color> <profile_text_color>634047</profile_text_color> <profile_link_color>088253</profile_link_color> <profile_sidebar_fill_color>E3E2DE</profile_sidebar_fill_color> <profile_sidebar_border_color>D3D2CF</profile_sidebar_border_color> <friends_count>376</friends_count> <created_at>Tue Sep 15 09:02:29 +0000 2009</created_at> <favourites_count>14</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a2.twimg.com/profile_background_images/85093765/check01.jpg</profile_background_image_url> <profile_background_tile>true</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>false</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>1396</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>22</listed_count> <show_all_inline_media>false</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> </list> <list> <id>7478234</id> <name>ec</name> <full_name>@samansa011/ec</full_name> <slug>ec</slug> <description></description> <subscriber_count>2</subscriber_count> <member_count>40</member_count> <uri>/samansa011/ec</uri> <following>false</following> <mode>public</mode> <user> <id>97559898</id> <name>Keiko Takada</name> <screen_name>samansa011</screen_name> <location>大阪市中央区天満橋</location> <description>ナチュラム・イーコマースの営業企画部らへんでサイト最適化やお客様向けサービス企画などをちくちく修行するとともに、社長室という名の寺子屋でも修行中。趣味はキャンプとか料理とかゲームとか万年筆(とインク)。あと、カーナビ・地図が大好物なのでそのへんの情報をひっぱってきます。基本的にお気楽です。</description> <profile_image_url>http://a2.twimg.com/profile_images/596788827/img.php_normal.jpg</profile_image_url> <url>http://www.naturum.co.jp/</url> <protected>false</protected> <followers_count>1745</followers_count> <profile_background_color>FF6699</profile_background_color> <profile_text_color>362720</profile_text_color> <profile_link_color>B40B43</profile_link_color> <profile_sidebar_fill_color>E5507E</profile_sidebar_fill_color> <profile_sidebar_border_color>CC3366</profile_sidebar_border_color> <friends_count>1622</friends_count> <created_at>Fri Dec 18 00:34:03 +0000 2009</created_at> <favourites_count>0</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Osaka</time_zone> <profile_background_image_url>http://a3.twimg.com/images/themes/theme11/bg.gif</profile_background_image_url> <profile_background_tile>true</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>false</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>9419</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>112</listed_count> <show_all_inline_media>false</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> </list> <list> <id>9913317</id> <name>listr</name> <full_name>@sonk/listr</full_name> <slug>listr</slug> <description></description> <subscriber_count>2</subscriber_count> <member_count>70</member_count> <uri>/sonk/listr</uri> <following>false</following> <mode>public</mode> <user> <id>30630757</id> <name>そん</name> <screen_name>sonk</screen_name> <location>大阪府堺市</location> <description>Web屋。既婚子無。埼玉で暮らす良き弟の兄。toeと夢中夢よく聴く。敬語きらい。タメ口歓迎!</description> <profile_image_url>http://a0.twimg.com/profile_images/1272384406/sonk-twitter_normal.JPG</profile_image_url> <url>http://sonkunt.blog26.fc2.com/</url> <protected>false</protected> <followers_count>2107</followers_count> <profile_background_color>cccccc</profile_background_color> <profile_text_color>333333</profile_text_color> <profile_link_color>8cbd0a</profile_link_color> <profile_sidebar_fill_color>dddddd</profile_sidebar_fill_color> <profile_sidebar_border_color>a6a6a6</profile_sidebar_border_color> <friends_count>1788</friends_count> <created_at>Sun Apr 12 10:05:00 +0000 2009</created_at> <favourites_count>3200</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Osaka</time_zone> <profile_background_image_url>http://a1.twimg.com/images/themes/theme2/bg.gif</profile_background_image_url> <profile_background_tile>false</profile_background_tile> <profile_use_background_image>false</profile_use_background_image> <notifications>false</notifications> <geo_enabled>true</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>9241</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>147</listed_count> <show_all_inline_media>false</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> </list> </lists> <next_cursor>1351829486262454239</next_cursor> <previous_cursor>0</previous_cursor> </lists_list>
memberships.json
json[lists]['0']['mode']=public json[lists]['0']['following']= json[lists]['0']['description']=フォロー自重しないと僕のTLはこうなる json[lists]['0']['slug']=main json[lists]['0']['uri']=/t__z/main json[lists]['0']['id_str']=44948157 json[lists]['0']['member_count']=170 json[lists]['0']['full_name']=@t__z/main json[lists]['0']['name']=Main json[lists]['0']['user']['notifications']= json[lists]['0']['user']['created_at']=Thu Feb 04 01:16:45 +0000 2010 json[lists]['0']['user']['profile_sidebar_border_color']=C6E2EE json[lists]['0']['user']['default_profile_image']= json[lists]['0']['user']['statuses_count']=10144 json[lists]['0']['user']['following']= json[lists]['0']['user']['description']=何か考えてそうで何も考えていない生物だよ! 最初の挨拶以降はタメ語の方が好きかもw あと、土日休は基本ツイートおやすみの予定っす! アイコンは@satoukabiさんの配布アイコンを使用しています(`・ω・´) json[lists]['0']['user']['profile_use_background_image']=1 json[lists]['0']['user']['friends_count']=136 json[lists]['0']['user']['profile_image_url']=http://a0.twimg.com/profile_images/1324752216/porin1_normal.png json[lists]['0']['user']['verified']= json[lists]['0']['user']['profile_background_color']=C6E2EE json[lists]['0']['user']['follow_request_sent']= json[lists]['0']['user']['profile_background_image_url']=http://a1.twimg.com/images/themes/theme2/bg.gif json[lists]['0']['user']['favourites_count']=2187 json[lists]['0']['user']['screen_name']=t__z json[lists]['0']['user']['id_str']=111172200 json[lists]['0']['user']['profile_text_color']=663B12 json[lists]['0']['user']['is_translator']= json[lists]['0']['user']['lang']=ja json[lists]['0']['user']['profile_sidebar_fill_color']=DAECF4 json[lists]['0']['user']['followers_count']=149 json[lists]['0']['user']['protected']= json[lists]['0']['user']['location']=日の当たる場所 json[lists]['0']['user']['listed_count']=10 json[lists]['0']['user']['profile_background_tile']= json[lists]['0']['user']['name']=T-Z/ティゼ json[lists]['0']['user']['show_all_inline_media']= json[lists]['0']['user']['geo_enabled']= json[lists]['0']['user']['url']= json[lists]['0']['user']['id']=111172200 json[lists]['0']['user']['default_profile']= json[lists]['0']['user']['contributors_enabled']= json[lists]['0']['user']['time_zone']=Tokyo json[lists]['0']['user']['utc_offset']=32400 json[lists]['0']['user']['profile_link_color']=1F98C7 json[lists]['0']['id']=44948157 json[lists]['0']['subscriber_count']=0 json[lists]['1']['mode']=public json[lists]['1']['description']=Linuxユーザ・ハウツー、アプリ・ウェブ開発、開発言語(PHP,Perl,Java,C等) json[lists]['1']['member_count']=120 json[lists]['1']['following']= json[lists]['1']['subscriber_count']=3 json[lists]['1']['id_str']=14582476 json[lists]['1']['slug']=pc-dev json[lists]['1']['full_name']=@ya426/pc-dev json[lists]['1']['name']=PC-Dev. json[lists]['1']['user']['default_profile_image']= json[lists]['1']['user']['contributors_enabled']= json[lists]['1']['user']['lang']=ja json[lists]['1']['user']['show_all_inline_media']=1 json[lists]['1']['user']['verified']= json[lists]['1']['user']['geo_enabled']= json[lists]['1']['user']['profile_link_color']=009999 json[lists]['1']['user']['description']=○現在千葉市在住(その前は甲府) ○趣味>写真(デジカメもフィルムも),林道ドライブ,散歩,料理,革細工,銀粘土,プログラミング(PHP,Perl)・Linux鯖構築・Web構築,電子工作,HAM(7n4uws),醗酵学,… ○千葉大 ※DMは殆ど見ないので送らないで!(@付投稿は見てます) json[lists]['1']['user']['location']=35.6262,140.1024 西千葉←甲府←多摩 json[lists]['1']['user']['profile_sidebar_border_color']=eeeeee json[lists]['1']['user']['followers_count']=4834 json[lists]['1']['user']['follow_request_sent']= json[lists]['1']['user']['time_zone']=Tokyo json[lists]['1']['user']['friends_count']=2842 json[lists]['1']['user']['url']=http://www.s-ht.com/~7n4uws/ json[lists]['1']['user']['is_translator']= json[lists]['1']['user']['statuses_count']=15527 json[lists]['1']['user']['profile_use_background_image']=1 json[lists]['1']['user']['favourites_count']=1 json[lists]['1']['user']['following']= json[lists]['1']['user']['notifications']= json[lists]['1']['user']['created_at']=Fri Mar 05 00:40:14 +0000 2010 json[lists]['1']['user']['profile_background_color']=131516 json[lists]['1']['user']['profile_background_image_url']=http://a1.twimg.com/images/themes/theme14/bg.gif json[lists]['1']['user']['default_profile']= json[lists]['1']['user']['listed_count']=151 json[lists]['1']['user']['protected']= json[lists]['1']['user']['profile_image_url']=http://a1.twimg.com/profile_images/1123577379/100910-2_normal.PNG json[lists]['1']['user']['id_str']=119938780 json[lists]['1']['user']['profile_text_color']=333333 json[lists]['1']['user']['name']=御火焚の某 json[lists]['1']['user']['profile_sidebar_fill_color']=efefef json[lists]['1']['user']['screen_name']=ya426 json[lists]['1']['user']['id']=119938780 json[lists]['1']['user']['profile_background_tile']=1 json[lists]['1']['user']['utc_offset']=32400 json[lists]['1']['uri']=/ya426/pc-dev json[lists]['1']['id']=14582476 json[lists]['2']['user']['default_profile_image']= json[lists]['2']['user']['profile_background_color']=666c67 json[lists]['2']['user']['protected']= json[lists]['2']['user']['profile_background_image_url']=http://a0.twimg.com/profile_background_images/139828923/bg.gif json[lists]['2']['user']['followers_count']=31 json[lists]['2']['user']['location']=ワニが住まう楽園 json[lists]['2']['user']['name']=わにらぶ json[lists]['2']['user']['is_translator']= json[lists]['2']['user']['notifications']= json[lists]['2']['user']['profile_image_url']=http://a1.twimg.com/profile_images/1208127407/wani_love_normal.gif json[lists]['2']['user']['id_str']=140678304 json[lists]['2']['user']['default_profile']= json[lists]['2']['user']['follow_request_sent']= json[lists]['2']['user']['utc_offset']=32400 json[lists]['2']['user']['friends_count']=40 json[lists]['2']['user']['profile_text_color']=504946 json[lists]['2']['user']['url']= json[lists]['2']['user']['show_all_inline_media']= json[lists]['2']['user']['geo_enabled']= json[lists]['2']['user']['profile_sidebar_fill_color']=f7f6f5 json[lists]['2']['user']['description']=爬虫類というかワニを愛してやまない、ただのヲタク(´∀`*)ゲーム、マンガ、アニメ大好きです!仕事はweb関連のことしてます。FlashのASがちょっと苦手…。主に仕事中の愚痴とかやるせなさとかをぶちまけてたり。。。フォロー&ブロックお気軽にどうぞー。フォロー返し希望の場合は@付けて知らせてやってください(´ω`*) json[lists]['2']['user']['screen_name']=wani_love json[lists]['2']['user']['contributors_enabled']= json[lists]['2']['user']['lang']=ja json[lists]['2']['user']['profile_background_tile']= json[lists]['2']['user']['created_at']=Thu May 06 03:58:38 +0000 2010 json[lists]['2']['user']['verified']= json[lists]['2']['user']['listed_count']=2 json[lists]['2']['user']['statuses_count']=2164 json[lists]['2']['user']['favourites_count']=7 json[lists]['2']['user']['profile_link_color']=00adcc json[lists]['2']['user']['id']=140678304 json[lists]['2']['user']['profile_sidebar_border_color']=d4d9df json[lists]['2']['user']['time_zone']=Osaka json[lists]['2']['user']['following']= json[lists]['2']['user']['profile_use_background_image']=1 json[lists]['2']['name']=design json[lists]['2']['id_str']=25680556 json[lists]['2']['uri']=/wani_love/design json[lists]['2']['mode']=public json[lists]['2']['description']=web関連とか... json[lists]['2']['slug']=design json[lists]['2']['member_count']=8 json[lists]['2']['id']=25680556 json[lists]['2']['subscriber_count']=1 json[lists]['2']['full_name']=@wani_love/design json[lists]['2']['following']= json[lists]['3']['user']['profile_background_color']=709397 json[lists]['3']['user']['protected']= json[lists]['3']['user']['statuses_count']=32 json[lists]['3']['user']['profile_background_image_url']=http://a1.twimg.com/images/themes/theme6/bg.gif json[lists]['3']['user']['followers_count']=20 json[lists]['3']['user']['location']=東京都杉並区 json[lists]['3']['user']['name']=Koike Tatsuya json[lists]['3']['user']['notifications']= json[lists]['3']['user']['profile_image_url']=http://a1.twimg.com/sticky/default_profile_images/default_profile_4_normal.png json[lists]['3']['user']['id_str']=126381455 json[lists]['3']['user']['default_profile_image']=1 json[lists]['3']['user']['default_profile']= json[lists]['3']['user']['utc_offset']=32400 json[lists]['3']['user']['profile_text_color']=333333 json[lists]['3']['user']['url']= json[lists]['3']['user']['profile_sidebar_fill_color']=A0C5C7 json[lists]['3']['user']['description']=Webデザイナーがんばり中 json[lists]['3']['user']['screen_name']=tatsuya529 json[lists]['3']['user']['is_translator']= json[lists]['3']['user']['lang']=ja json[lists]['3']['user']['profile_background_tile']= json[lists]['3']['user']['created_at']=Thu Mar 25 17:53:30 +0000 2010 json[lists]['3']['user']['follow_request_sent']= json[lists]['3']['user']['verified']= json[lists]['3']['user']['friends_count']=45 json[lists]['3']['user']['favourites_count']=14 json[lists]['3']['user']['profile_link_color']=FF3300 json[lists]['3']['user']['id']=126381455 json[lists]['3']['user']['contributors_enabled']= json[lists]['3']['user']['profile_sidebar_border_color']=86A4A6 json[lists]['3']['user']['show_all_inline_media']= json[lists]['3']['user']['geo_enabled']=1 json[lists]['3']['user']['time_zone']=Tokyo json[lists]['3']['user']['listed_count']=0 json[lists]['3']['user']['following']=1 json[lists]['3']['user']['profile_use_background_image']=1 json[lists]['3']['name']=Web json[lists]['3']['id_str']=40003117 json[lists]['3']['uri']=/tatsuya529/web json[lists]['3']['mode']=public json[lists]['3']['description']=Webデザイン関連 json[lists]['3']['slug']=web json[lists]['3']['member_count']=31 json[lists]['3']['id']=40003117 json[lists]['3']['subscriber_count']=0 json[lists]['3']['full_name']=@tatsuya529/web json[lists]['3']['following']= json[lists]['4']['user']['default_profile_image']= json[lists]['4']['user']['profile_background_color']=0099B9 json[lists]['4']['user']['protected']= json[lists]['4']['user']['profile_background_image_url']=http://a1.twimg.com/images/themes/theme4/bg.gif json[lists]['4']['user']['followers_count']=481 json[lists]['4']['user']['location']=Tokyo / 東京←大分←宮崎←都城←大分←別府 json[lists]['4']['user']['name']=(ゆ・ー・)や / Yuya json[lists]['4']['user']['is_translator']= json[lists]['4']['user']['notifications']= json[lists]['4']['user']['profile_image_url']=http://a2.twimg.com/profile_images/1277968538/image_normal.jpg json[lists]['4']['user']['id_str']=17337772 json[lists]['4']['user']['default_profile']= json[lists]['4']['user']['follow_request_sent']= json[lists]['4']['user']['utc_offset']=32400 json[lists]['4']['user']['friends_count']=652 json[lists]['4']['user']['profile_text_color']=3C3940 json[lists]['4']['user']['url']=http://yue-music.tumblr.com/ json[lists]['4']['user']['show_all_inline_media']= json[lists]['4']['user']['geo_enabled']=1 json[lists]['4']['user']['profile_sidebar_fill_color']=95E8EC json[lists]['4']['user']['description']=26歳♂A型蠍座11.19生/aikoジャンキー/web的な人/Liveジャンキー/安藤裕子/YUIYUKA/miwa/チャットベボベサカナねごと時雨理論/1000say/エレクトロポップ&ロック/川嶋/いきもの/インディアマ路上系/2次元も/mc1242 json[lists]['4']['user']['screen_name']=y_kam json[lists]['4']['user']['contributors_enabled']= json[lists]['4']['user']['lang']=ja json[lists]['4']['user']['profile_background_tile']= json[lists]['4']['user']['created_at']=Wed Nov 12 11:52:34 +0000 2008 json[lists]['4']['user']['verified']= json[lists]['4']['user']['listed_count']=73 json[lists]['4']['user']['statuses_count']=41488 json[lists]['4']['user']['favourites_count']=1868 json[lists]['4']['user']['profile_link_color']=0099B9 json[lists]['4']['user']['id']=17337772 json[lists]['4']['user']['profile_sidebar_border_color']=5ED4DC json[lists]['4']['user']['time_zone']=Tokyo json[lists]['4']['user']['following']= json[lists]['4']['user']['profile_use_background_image']=1 json[lists]['4']['name']=o__it_works json[lists]['4']['id_str']=13042575 json[lists]['4']['uri']=/y_kam/o-it-works json[lists]['4']['mode']=public json[lists]['4']['description']=IT workers json[lists]['4']['slug']=o-it-works json[lists]['4']['member_count']=32 json[lists]['4']['id']=13042575 json[lists]['4']['subscriber_count']=0 json[lists]['4']['full_name']=@y_kam/o-it-works json[lists]['4']['following']= json[lists]['5']['user']['friends_count']=2659 json[lists]['5']['user']['profile_background_color']=9AE4E8 json[lists]['5']['user']['protected']= json[lists]['5']['user']['is_translator']= json[lists]['5']['user']['profile_background_image_url']=http://a1.twimg.com/images/themes/theme16/bg.gif json[lists]['5']['user']['followers_count']=2449 json[lists]['5']['user']['location']= json[lists]['5']['user']['name']=かな json[lists]['5']['user']['follow_request_sent']= json[lists]['5']['user']['contributors_enabled']= json[lists]['5']['user']['notifications']= json[lists]['5']['user']['profile_image_url']=http://a2.twimg.com/profile_images/1347963548/icon13027498658566_normal.jpg json[lists]['5']['user']['id_str']=123413513 json[lists]['5']['user']['utc_offset']=32400 json[lists]['5']['user']['profile_text_color']=333333 json[lists]['5']['user']['url']=http://www.digbook.jp/ json[lists]['5']['user']['show_all_inline_media']= json[lists]['5']['user']['geo_enabled']= json[lists]['5']['user']['profile_sidebar_fill_color']=DDFFCC json[lists]['5']['user']['description']=電子書籍・電子出版の でじたる書房 の公式アカウント担当かなです。 この140字という小さな世界で、でじたる書房という未知の可能性を持つサイトの魅力と、未来ある作家さんの魅力を最大限に伝えていけたらと思います。 読者様が大切な一冊を見つけられるお手伝いができればと思います。 どうぞよろしくお願いします。 json[lists]['5']['user']['screen_name']=digi_book json[lists]['5']['user']['lang']=ja json[lists]['5']['user']['profile_background_tile']= json[lists]['5']['user']['created_at']=Tue Mar 16 01:16:49 +0000 2010 json[lists]['5']['user']['listed_count']=119 json[lists]['5']['user']['verified']= json[lists]['5']['user']['statuses_count']=3521 json[lists]['5']['user']['favourites_count']=22 json[lists]['5']['user']['profile_link_color']=0084B4 json[lists]['5']['user']['id']=123413513 json[lists]['5']['user']['profile_sidebar_border_color']=BDDCAD json[lists]['5']['user']['time_zone']=Tokyo json[lists]['5']['user']['default_profile_image']= json[lists]['5']['user']['default_profile']= json[lists]['5']['user']['following']= json[lists]['5']['user']['profile_use_background_image']=1 json[lists]['5']['name']=IT json[lists]['5']['id_str']=15866301 json[lists]['5']['uri']=/digi_book/it json[lists]['5']['mode']=public json[lists]['5']['description']= json[lists]['5']['slug']=it json[lists]['5']['member_count']=326 json[lists]['5']['id']=15866301 json[lists]['5']['subscriber_count']=13 json[lists]['5']['full_name']=@digi_book/it json[lists]['5']['following']= json[lists]['6']['user']['profile_background_color']=EDECE9 json[lists]['6']['user']['protected']= json[lists]['6']['user']['listed_count']=22 json[lists]['6']['user']['statuses_count']=3128 json[lists]['6']['user']['profile_background_image_url']=http://a1.twimg.com/images/themes/theme3/bg.gif json[lists]['6']['user']['followers_count']=117 json[lists]['6']['user']['location']=兵庫県西宮市 json[lists]['6']['user']['name']=うにまくら json[lists]['6']['user']['notifications']= json[lists]['6']['user']['profile_image_url']=http://a0.twimg.com/profile_images/1355458381/unimakura_normal.jpg json[lists]['6']['user']['id_str']=59024283 json[lists]['6']['user']['default_profile']= json[lists]['6']['user']['utc_offset']=32400 json[lists]['6']['user']['profile_text_color']=634047 json[lists]['6']['user']['url']=http://unimakura.jp json[lists]['6']['user']['profile_sidebar_fill_color']=E3E2DE json[lists]['6']['user']['description']=見習いデザイナー兼WEBプログラマー。周りの色んな人に助言をもらいながら、デザインの修行中です。ゆっくり歩き続ければ、いつか遠くへ行けるさっ。あまりリアルタイムには見ていないので、適当によろしくお願いしますー。 json[lists]['6']['user']['screen_name']=unimakura json[lists]['6']['user']['is_translator']= json[lists]['6']['user']['default_profile_image']= json[lists]['6']['user']['contributors_enabled']= json[lists]['6']['user']['lang']=ja json[lists]['6']['user']['profile_background_tile']= json[lists]['6']['user']['created_at']=Wed Jul 22 03:42:04 +0000 2009 json[lists]['6']['user']['verified']= json[lists]['6']['user']['friends_count']=119 json[lists]['6']['user']['favourites_count']=9 json[lists]['6']['user']['profile_link_color']=088253 json[lists]['6']['user']['id']=59024283 json[lists]['6']['user']['follow_request_sent']= json[lists]['6']['user']['profile_sidebar_border_color']=D3D2CF json[lists]['6']['user']['show_all_inline_media']= json[lists]['6']['user']['geo_enabled']= json[lists]['6']['user']['time_zone']=Tokyo json[lists]['6']['user']['following']=1 json[lists]['6']['user']['profile_use_background_image']=1 json[lists]['6']['name']=webcreaters json[lists]['6']['id_str']=36225789 json[lists]['6']['uri']=/unimakura/webcreaters json[lists]['6']['mode']=public json[lists]['6']['description']=ウェブ系のみなみなさまー json[lists]['6']['slug']=webcreaters json[lists]['6']['member_count']=22 json[lists]['6']['id']=36225789 json[lists]['6']['subscriber_count']=0 json[lists]['6']['full_name']=@unimakura/webcreaters json[lists]['6']['following']= json[lists]['7']['user']['profile_background_color']=709397 json[lists]['7']['user']['protected']= json[lists]['7']['user']['default_profile_image']= json[lists]['7']['user']['profile_background_image_url']=http://a1.twimg.com/profile_background_images/253167957/MK2N9931.JPG json[lists]['7']['user']['followers_count']=677 json[lists]['7']['user']['location']=東京都品川区大井 json[lists]['7']['user']['name']=能勢謙介 json[lists]['7']['user']['notifications']= json[lists]['7']['user']['profile_image_url']=http://a2.twimg.com/profile_images/1288115094/nose_japanwelivestrong_normal.jpg json[lists]['7']['user']['id_str']=65581940 json[lists]['7']['user']['is_translator']= json[lists]['7']['user']['default_profile']= json[lists]['7']['user']['utc_offset']=-36000 json[lists]['7']['user']['profile_text_color']=333333 json[lists]['7']['user']['url']=http://www.mystar-japan.org/ json[lists]['7']['user']['follow_request_sent']= json[lists]['7']['user']['friends_count']=1040 json[lists]['7']['user']['profile_sidebar_fill_color']=A0C5C7 json[lists]['7']['user']['description']=京都府宇治市出身。実家住まい32年ののち転職を機に関東へ。自身も患者であるIDDM(1型糖尿病)を軸に、慢性疾患患者をサポートするプロジェクト「IDDM☆MYSTAR」を推進中。ロードバイクにもハマっているらしいw。最新のFTP(CP)は213W。 json[lists]['7']['user']['screen_name']=nose_kensuke json[lists]['7']['user']['lang']=ja json[lists]['7']['user']['profile_background_tile']=1 json[lists]['7']['user']['created_at']=Fri Aug 14 06:49:28 +0000 2009 json[lists]['7']['user']['contributors_enabled']= json[lists]['7']['user']['verified']= json[lists]['7']['user']['show_all_inline_media']= json[lists]['7']['user']['geo_enabled']=1 json[lists]['7']['user']['favourites_count']=5 json[lists]['7']['user']['profile_link_color']=FF3300 json[lists]['7']['user']['id']=65581940 json[lists]['7']['user']['listed_count']=68 json[lists]['7']['user']['profile_sidebar_border_color']=86A4A6 json[lists]['7']['user']['time_zone']=Hawaii json[lists]['7']['user']['statuses_count']=4699 json[lists]['7']['user']['following']=1 json[lists]['7']['user']['profile_use_background_image']=1 json[lists]['7']['name']=IT json[lists]['7']['id_str']=5899023 json[lists]['7']['uri']=/nose_kensuke/it json[lists]['7']['mode']=public json[lists]['7']['description']= json[lists]['7']['slug']=it json[lists]['7']['member_count']=41 json[lists]['7']['id']=5899023 json[lists]['7']['subscriber_count']=0 json[lists]['7']['full_name']=@nose_kensuke/it json[lists]['7']['following']= json[lists]['8']['user']['profile_background_color']=C6E2EE json[lists]['8']['user']['protected']= json[lists]['8']['user']['default_profile_image']= json[lists]['8']['user']['profile_background_image_url']=http://a1.twimg.com/images/themes/theme2/bg.gif json[lists]['8']['user']['followers_count']=276 json[lists]['8']['user']['location']=石川県金沢市の辺りでフラフラしたり json[lists]['8']['user']['name']=Kazuhiro.H json[lists]['8']['user']['notifications']= json[lists]['8']['user']['friends_count']=400 json[lists]['8']['user']['profile_image_url']=http://a0.twimg.com/profile_images/1243033264/icon_normal.png json[lists]['8']['user']['id_str']=143728611 json[lists]['8']['user']['is_translator']= json[lists]['8']['user']['utc_offset']=32400 json[lists]['8']['user']['profile_text_color']=663B12 json[lists]['8']['user']['url']=http://booklog.jp/users/hassylib json[lists]['8']['user']['follow_request_sent']= json[lists]['8']['user']['contributors_enabled']= json[lists]['8']['user']['profile_sidebar_fill_color']=DAECF4 json[lists]['8']['user']['description']=そこそこWeb関係の仕事のひと。地方出版社。ストイック。書店好き/html/css/jQuery/デザイン/広告好き/歴史/美術/漫画/雑誌/ドライブ/音楽/槇原敬之/Mr.Children/空気公団/学芸員・図書館司書・教員資格所有。書道・イラストはたしなみ程度。 json[lists]['8']['user']['screen_name']=hassy_lib json[lists]['8']['user']['default_profile']= json[lists]['8']['user']['lang']=ja json[lists]['8']['user']['profile_background_tile']= json[lists]['8']['user']['created_at']=Fri May 14 07:12:51 +0000 2010 json[lists]['8']['user']['show_all_inline_media']= json[lists]['8']['user']['verified']= json[lists]['8']['user']['geo_enabled']= json[lists]['8']['user']['favourites_count']=9 json[lists]['8']['user']['profile_link_color']=1F98C7 json[lists]['8']['user']['id']=143728611 json[lists]['8']['user']['listed_count']=10 json[lists]['8']['user']['profile_sidebar_border_color']=C6E2EE json[lists]['8']['user']['statuses_count']=3785 json[lists]['8']['user']['time_zone']=Tokyo json[lists]['8']['user']['following']=1 json[lists]['8']['user']['profile_use_background_image']=1 json[lists]['8']['name']=Web02 json[lists]['8']['id_str']=29049849 json[lists]['8']['uri']=/hassy_lib/web02 json[lists]['8']['mode']=public json[lists]['8']['description']=Web json[lists]['8']['slug']=web02 json[lists]['8']['member_count']=48 json[lists]['8']['id']=29049849 json[lists]['8']['subscriber_count']=0 json[lists]['8']['full_name']=@hassy_lib/web02 json[lists]['8']['following']= json[lists]['9']['user']['profile_background_color']=C6E2EE json[lists]['9']['user']['protected']= json[lists]['9']['user']['default_profile_image']= json[lists]['9']['user']['profile_background_image_url']=http://a1.twimg.com/images/themes/theme2/bg.gif json[lists]['9']['user']['followers_count']=151 json[lists]['9']['user']['location']=日の当たる場所 json[lists]['9']['user']['name']=T-Z/ティゼ json[lists]['9']['user']['notifications']= json[lists]['9']['user']['profile_image_url']=http://a0.twimg.com/profile_images/1324752216/porin1_normal.png json[lists]['9']['user']['id_str']=111172200 json[lists]['9']['user']['is_translator']= json[lists]['9']['user']['default_profile']= json[lists]['9']['user']['utc_offset']=32400 json[lists]['9']['user']['profile_text_color']=663B12 json[lists]['9']['user']['url']= json[lists]['9']['user']['follow_request_sent']= json[lists]['9']['user']['friends_count']=136 json[lists]['9']['user']['profile_sidebar_fill_color']=DAECF4 json[lists]['9']['user']['description']=何か考えてそうで何も考えていない生物だよ! 最初の挨拶以降はタメ語の方が好きかもw あと、土日休は基本ツイートおやすみの予定っす! アイコンは@satoukabiさんの配布アイコンを使用しています(`・ω・´) json[lists]['9']['user']['screen_name']=t__z json[lists]['9']['user']['lang']=ja json[lists]['9']['user']['profile_background_tile']= json[lists]['9']['user']['created_at']=Thu Feb 04 01:16:45 +0000 2010 json[lists]['9']['user']['contributors_enabled']= json[lists]['9']['user']['verified']= json[lists]['9']['user']['show_all_inline_media']= json[lists]['9']['user']['geo_enabled']= json[lists]['9']['user']['favourites_count']=2260 json[lists]['9']['user']['profile_link_color']=1F98C7 json[lists]['9']['user']['id']=111172200 json[lists]['9']['user']['listed_count']=11 json[lists]['9']['user']['profile_sidebar_border_color']=C6E2EE json[lists]['9']['user']['time_zone']=Tokyo json[lists]['9']['user']['statuses_count']=10445 json[lists]['9']['user']['following']= json[lists]['9']['user']['profile_use_background_image']=1 json[lists]['9']['name']=Engineer json[lists]['9']['id_str']=6954742 json[lists]['9']['uri']=/t__z/engineer json[lists]['9']['mode']=public json[lists]['9']['description']=エンジニア~な雰囲気な方々。みんなクリエイティブ!>< json[lists]['9']['slug']=engineer json[lists]['9']['member_count']=120 json[lists]['9']['id']=6954742 json[lists]['9']['subscriber_count']=1 json[lists]['9']['full_name']=@t__z/engineer json[lists]['9']['following']= json[lists]['10']['user']['profile_background_color']=C0DEED json[lists]['10']['user']['protected']= json[lists]['10']['user']['statuses_count']=433 json[lists]['10']['user']['profile_background_image_url']=http://a3.twimg.com/images/themes/theme1/bg.png json[lists]['10']['user']['followers_count']=420 json[lists]['10']['user']['location']= json[lists]['10']['user']['name']=茅乃舎 json[lists]['10']['user']['notifications']= json[lists]['10']['user']['profile_image_url']=http://a0.twimg.com/profile_images/1186988441/____normal.jpg json[lists]['10']['user']['id_str']=148567067 json[lists]['10']['user']['default_profile_image']= json[lists]['10']['user']['default_profile']=1 json[lists]['10']['user']['utc_offset']=32400 json[lists]['10']['user']['profile_text_color']=333333 json[lists]['10']['user']['url']=http://www.kayanoya.com/ json[lists]['10']['user']['profile_sidebar_fill_color']=DDEEF6 json[lists]['10']['user']['description']=福岡県粕屋郡久山町にある自然食のレストラン。明太子の椒房庵(@shobo_an)が運営しています。東京ミッドタウンには、茅乃舎の調味料を販売するお店を出しています。あと地元の岩田屋と博多駅デイトスにもお店があります。新商品の情報、店舗のイベント情報、お客様の質問に対する答えなどをつぶやきま~す。 json[lists]['10']['user']['screen_name']=kayanoya json[lists]['10']['user']['is_translator']= json[lists]['10']['user']['lang']=ja json[lists]['10']['user']['profile_background_tile']= json[lists]['10']['user']['created_at']=Thu May 27 01:30:09 +0000 2010 json[lists]['10']['user']['follow_request_sent']= json[lists]['10']['user']['verified']= json[lists]['10']['user']['friends_count']=503 json[lists]['10']['user']['favourites_count']=0 json[lists]['10']['user']['profile_link_color']=0084B4 json[lists]['10']['user']['id']=148567067 json[lists]['10']['user']['contributors_enabled']= json[lists]['10']['user']['profile_sidebar_border_color']=C0DEED json[lists]['10']['user']['show_all_inline_media']= json[lists]['10']['user']['geo_enabled']= json[lists]['10']['user']['time_zone']=Osaka json[lists]['10']['user']['listed_count']=25 json[lists]['10']['user']['following']=1 json[lists]['10']['user']['profile_use_background_image']=1 json[lists]['10']['name']=My favstar.fm list json[lists]['10']['id_str']=34209852 json[lists]['10']['uri']=/kayanoya/my-favstar-fm-list json[lists]['10']['mode']=public json[lists]['10']['description']=My favorite tweeters, curated with help from http://favstar.fm json[lists]['10']['slug']=my-favstar-fm-list json[lists]['10']['member_count']=5 json[lists]['10']['id']=34209852 json[lists]['10']['subscriber_count']=0 json[lists]['10']['full_name']=@kayanoya/my-favstar-fm-list json[lists]['10']['following']= json[lists]['11']['user']['profile_background_color']=C0DEED json[lists]['11']['user']['protected']= json[lists]['11']['user']['default_profile_image']=1 json[lists]['11']['user']['default_profile']=1 json[lists]['11']['user']['profile_background_image_url']=http://a0.twimg.com/images/themes/theme1/bg.png json[lists]['11']['user']['followers_count']=9 json[lists]['11']['user']['location']=とうきょう json[lists]['11']['user']['name']=PJRPJRPJRPJRPJRPJRPJ json[lists]['11']['user']['notifications']= json[lists]['11']['user']['profile_image_url']=http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png json[lists]['11']['user']['id_str']=55984769 json[lists]['11']['user']['is_translator']= json[lists]['11']['user']['utc_offset']=32400 json[lists]['11']['user']['profile_text_color']=333333 json[lists]['11']['user']['url']=http://www.hoge.com/ajierjaowejraojioejr#abut json[lists]['11']['user']['follow_request_sent']= json[lists]['11']['user']['friends_count']=190 json[lists]['11']['user']['profile_sidebar_fill_color']=DDEEF6 json[lists]['11']['user']['description']=いやんばか。 json[lists]['11']['user']['screen_name']=pjroomer json[lists]['11']['user']['lang']=ja json[lists]['11']['user']['profile_background_tile']= json[lists]['11']['user']['created_at']=Sun Jul 12 01:37:21 +0000 2009 json[lists]['11']['user']['contributors_enabled']= json[lists]['11']['user']['verified']= json[lists]['11']['user']['show_all_inline_media']= json[lists]['11']['user']['geo_enabled']=1 json[lists]['11']['user']['favourites_count']=99 json[lists]['11']['user']['profile_link_color']=0084B4 json[lists]['11']['user']['id']=55984769 json[lists]['11']['user']['listed_count']=4 json[lists]['11']['user']['profile_sidebar_border_color']=C0DEED json[lists]['11']['user']['time_zone']=Tokyo json[lists]['11']['user']['statuses_count']=1424 json[lists]['11']['user']['following']= json[lists]['11']['user']['profile_use_background_image']=1 json[lists]['11']['name']=サンプル json[lists]['11']['id_str']=33639414 json[lists]['11']['uri']=/pjroomer/サンプル json[lists]['11']['mode']=public json[lists]['11']['description']=あいうえおかきくけこあいうえおかきくけこあいうえおかきくけこ json[lists]['11']['slug']=サンプル json[lists]['11']['member_count']=2 json[lists]['11']['id']=33639414 json[lists]['11']['subscriber_count']=0 json[lists]['11']['full_name']=@pjroomer/サンプル json[lists]['11']['following']= json[lists]['12']['user']['default_profile_image']= json[lists]['12']['user']['profile_background_color']=C0DEED json[lists]['12']['user']['protected']= json[lists]['12']['user']['profile_background_image_url']=http://a0.twimg.com/images/themes/theme1/bg.png json[lists]['12']['user']['followers_count']=260 json[lists]['12']['user']['location']= json[lists]['12']['user']['name']=いえもん json[lists]['12']['user']['is_translator']= json[lists]['12']['user']['notifications']= json[lists]['12']['user']['profile_image_url']=http://a2.twimg.com/profile_images/440455604/large_normal.jpg json[lists]['12']['user']['id_str']=75280787 json[lists]['12']['user']['default_profile']=1 json[lists]['12']['user']['follow_request_sent']= json[lists]['12']['user']['utc_offset']=32400 json[lists]['12']['user']['friends_count']=547 json[lists]['12']['user']['profile_text_color']=333333 json[lists]['12']['user']['url']=http://twilog.org/ye_mon json[lists]['12']['user']['show_all_inline_media']= json[lists]['12']['user']['geo_enabled']= json[lists]['12']['user']['profile_sidebar_fill_color']=DDEEF6 json[lists]['12']['user']['description']= json[lists]['12']['user']['screen_name']=ye_mon json[lists]['12']['user']['contributors_enabled']= json[lists]['12']['user']['lang']=ja json[lists]['12']['user']['profile_background_tile']= json[lists]['12']['user']['created_at']=Fri Sep 18 13:33:27 +0000 2009 json[lists]['12']['user']['verified']= json[lists]['12']['user']['listed_count']=15 json[lists]['12']['user']['statuses_count']=3029 json[lists]['12']['user']['favourites_count']=2478 json[lists]['12']['user']['profile_link_color']=0084B4 json[lists]['12']['user']['id']=75280787 json[lists]['12']['user']['profile_sidebar_border_color']=C0DEED json[lists]['12']['user']['time_zone']=Tokyo json[lists]['12']['user']['following']= json[lists]['12']['user']['profile_use_background_image']=1 json[lists]['12']['name']=web reference json[lists]['12']['id_str']=18276687 json[lists]['12']['uri']=/ye_mon/web-reference json[lists]['12']['mode']=public json[lists]['12']['description']= json[lists]['12']['slug']=web-reference json[lists]['12']['member_count']=35 json[lists]['12']['id']=18276687 json[lists]['12']['subscriber_count']=7 json[lists]['12']['full_name']=@ye_mon/web-reference json[lists]['12']['following']= json[lists]['13']['user']['default_profile_image']= json[lists]['13']['user']['profile_background_color']=ffffff json[lists]['13']['user']['protected']= json[lists]['13']['user']['profile_background_image_url']=http://a3.twimg.com/profile_background_images/162506678/colorcircles.jpg json[lists]['13']['user']['followers_count']=257 json[lists]['13']['user']['location']= json[lists]['13']['user']['name']=天見のりこ json[lists]['13']['user']['is_translator']= json[lists]['13']['user']['notifications']= json[lists]['13']['user']['profile_image_url']=http://a0.twimg.com/profile_images/1229565945/twitter_icon2_normal.jpg json[lists]['13']['user']['id_str']=173514986 json[lists]['13']['user']['default_profile']= json[lists]['13']['user']['follow_request_sent']= json[lists]['13']['user']['utc_offset']=32400 json[lists]['13']['user']['friends_count']=256 json[lists]['13']['user']['profile_text_color']=3C3940 json[lists]['13']['user']['url']=http://tencount.main.jp/ json[lists]['13']['user']['show_all_inline_media']= json[lists]['13']['user']['geo_enabled']= json[lists]['13']['user']['profile_sidebar_fill_color']=dedede json[lists]['13']['user']['description']=漫画、ストーリー、ドラマを作ります。サスペンス、ロマンス、ファンタジーなど。Windows、Androidユーザー。 [Twilog] http://twilog.org/amamiNRK [Twitter-サイト関連-] @tencount2000 json[lists]['13']['user']['screen_name']=amamiNRK json[lists]['13']['user']['contributors_enabled']= json[lists]['13']['user']['lang']=ja json[lists]['13']['user']['profile_background_tile']= json[lists]['13']['user']['created_at']=Sun Aug 01 17:47:06 +0000 2010 json[lists]['13']['user']['verified']= json[lists]['13']['user']['listed_count']=19 json[lists]['13']['user']['statuses_count']=14297 json[lists]['13']['user']['favourites_count']=325 json[lists]['13']['user']['profile_link_color']=0099B9 json[lists]['13']['user']['id']=173514986 json[lists]['13']['user']['profile_sidebar_border_color']=dedede json[lists]['13']['user']['time_zone']=Tokyo json[lists]['13']['user']['following']= json[lists]['13']['user']['profile_use_background_image']= json[lists]['13']['name']=direct json[lists]['13']['id_str']=31584658 json[lists]['13']['uri']=/amamiNRK/direct json[lists]['13']['mode']=public json[lists]['13']['description']= json[lists]['13']['slug']=direct json[lists]['13']['member_count']=36 json[lists]['13']['id']=31584658 json[lists]['13']['subscriber_count']=1 json[lists]['13']['full_name']=@amamiNRK/direct json[lists]['13']['following']= json[lists]['14']['user']['profile_background_color']=d5c69d json[lists]['14']['user']['protected']= json[lists]['14']['user']['default_profile_image']= json[lists]['14']['user']['profile_background_image_url']=http://a2.twimg.com/profile_background_images/195046198/227913088-2.jpg json[lists]['14']['user']['followers_count']=847 json[lists]['14']['user']['location']=千葉県 船橋市 東船橋 json[lists]['14']['user']['name']=とっきー json[lists]['14']['user']['notifications']= json[lists]['14']['user']['profile_image_url']=http://a3.twimg.com/profile_images/1352012789/designoil-001_normal.png json[lists]['14']['user']['id_str']=80219603 json[lists]['14']['user']['is_translator']= json[lists]['14']['user']['utc_offset']=32400 json[lists]['14']['user']['profile_text_color']=60421b json[lists]['14']['user']['url']=http://www.design-oil.com/ json[lists]['14']['user']['follow_request_sent']= json[lists]['14']['user']['friends_count']=825 json[lists]['14']['user']['profile_sidebar_fill_color']=faf9f4 json[lists]['14']['user']['description']=Webデザイナーとか名乗りつつWebデザインしたり、紙ものやったり、出張したりするフリーランスです。「Webペンギンの会」会員。 DESIGN Oilファンページはこちら:http://www.facebook.com/pages/DESIGN-Oil/204408912908817 json[lists]['14']['user']['screen_name']=tokizaki json[lists]['14']['user']['lang']=ja json[lists]['14']['user']['profile_background_tile']=1 json[lists]['14']['user']['created_at']=Tue Oct 06 04:56:31 +0000 2009 json[lists]['14']['user']['contributors_enabled']= json[lists]['14']['user']['verified']= json[lists]['14']['user']['default_profile']= json[lists]['14']['user']['show_all_inline_media']= json[lists]['14']['user']['geo_enabled']= json[lists]['14']['user']['favourites_count']=416 json[lists]['14']['user']['profile_link_color']=0094f0 json[lists]['14']['user']['id']=80219603 json[lists]['14']['user']['listed_count']=104 json[lists]['14']['user']['profile_sidebar_border_color']=cccaca json[lists]['14']['user']['time_zone']=Tokyo json[lists]['14']['user']['statuses_count']=11806 json[lists]['14']['user']['following']=1 json[lists]['14']['user']['profile_use_background_image']=1 json[lists]['14']['name']=web and design json[lists]['14']['id_str']=2982667 json[lists]['14']['uri']=/tokizaki/web-and-design json[lists]['14']['mode']=public json[lists]['14']['description']= json[lists]['14']['slug']=web-and-design json[lists]['14']['member_count']=334 json[lists]['14']['id']=2982667 json[lists]['14']['subscriber_count']=12 json[lists]['14']['full_name']=@tokizaki/web-and-design json[lists]['14']['following']= json[lists]['15']['member_count']=229 json[lists]['15']['user']['profile_sidebar_border_color']=ffffff json[lists]['15']['user']['followers_count']=634 json[lists]['15']['user']['protected']= json[lists]['15']['user']['time_zone']=Osaka json[lists]['15']['user']['profile_image_url']=http://a1.twimg.com/profile_images/1364733126/DSC_9885_DIC_normal.jpg json[lists]['15']['user']['name']=feat.Yasuharu Sakata json[lists]['15']['user']['contributors_enabled']= json[lists]['15']['user']['profile_use_background_image']= json[lists]['15']['user']['favourites_count']=1190 json[lists]['15']['user']['listed_count']=73 json[lists]['15']['user']['notifications']= json[lists]['15']['user']['utc_offset']=32400 json[lists]['15']['user']['profile_background_color']=ffffff json[lists]['15']['user']['screen_name']=ayame_san_com json[lists]['15']['user']['show_all_inline_media']=1 json[lists]['15']['user']['geo_enabled']= json[lists]['15']['user']['profile_background_image_url']=http://a1.twimg.com/images/themes/theme14/bg.gif json[lists]['15']['user']['description']=Creators' Room +eye+主宰。グラフィックデザイナ。1Q84生。奥さんと3人の子ども。COMME des GARCONS/JOJO/EVANGELION/L'Arc〜en〜Ciel/PornoGraffitti/サカナクション/特撮/真保裕一/森博嗣/上遠野浩平。 json[lists]['15']['user']['lang']=ja json[lists]['15']['user']['id_str']=112631975 json[lists]['15']['user']['profile_text_color']=707070 json[lists]['15']['user']['location']=kobe json[lists]['15']['user']['default_profile_image']= json[lists]['15']['user']['statuses_count']=9371 json[lists]['15']['user']['profile_sidebar_fill_color']=ffffff json[lists]['15']['user']['id']=112631975 json[lists]['15']['user']['profile_background_tile']= json[lists]['15']['user']['friends_count']=534 json[lists]['15']['user']['url']=http://ayame-san-com.jimdo.com/ json[lists]['15']['user']['is_translator']= json[lists]['15']['user']['default_profile']= json[lists]['15']['user']['follow_request_sent']= json[lists]['15']['user']['following']=1 json[lists]['15']['user']['verified']= json[lists]['15']['user']['created_at']=Tue Feb 09 05:31:13 +0000 2010 json[lists]['15']['user']['profile_link_color']=424242 json[lists]['15']['name']=design json[lists]['15']['uri']=/ayame_san_com/design json[lists]['15']['subscriber_count']=17 json[lists]['15']['mode']=public json[lists]['15']['description']=デザインに関わる人々とその周辺。 json[lists]['15']['id_str']=16074715 json[lists]['15']['slug']=design json[lists]['15']['id']=16074715 json[lists]['15']['full_name']=@ayame_san_com/design json[lists]['15']['following']= json[lists]['16']['mode']=public json[lists]['16']['description']=秘書山岡さんの紹介 json[lists]['16']['member_count']=118 json[lists]['16']['id_str']=20514465 json[lists]['16']['following']= json[lists]['16']['subscriber_count']=2 json[lists]['16']['slug']=hisyotter json[lists]['16']['full_name']=@longroofitter/hisyotter json[lists]['16']['name']=hisyotter json[lists]['16']['user']['default_profile_image']= json[lists]['16']['user']['default_profile']= json[lists]['16']['user']['lang']=ja json[lists]['16']['user']['profile_background_color']=1A1B1F json[lists]['16']['user']['show_all_inline_media']=1 json[lists]['16']['user']['verified']= json[lists]['16']['user']['geo_enabled']=1 json[lists]['16']['user']['profile_background_image_url']=http://a0.twimg.com/profile_background_images/7210175/531px-Vermeer_The_concert.JPG json[lists]['16']['user']['friends_count']=1700 json[lists]['16']['user']['description']=long long long roof json[lists]['16']['user']['location']=Gifu, Japan json[lists]['16']['user']['followers_count']=1800 json[lists]['16']['user']['id_str']=19338943 json[lists]['16']['user']['follow_request_sent']= json[lists]['16']['user']['profile_text_color']=666666 json[lists]['16']['user']['url']=http://bcphotoshare.com/photos/21898 json[lists]['16']['user']['is_translator']= json[lists]['16']['user']['statuses_count']=38945 json[lists]['16']['user']['profile_sidebar_fill_color']=252429 json[lists]['16']['user']['following']= json[lists]['16']['user']['notifications']= json[lists]['16']['user']['profile_background_tile']= json[lists]['16']['user']['created_at']=Thu Jan 22 13:58:07 +0000 2009 json[lists]['16']['user']['favourites_count']=3200 json[lists]['16']['user']['listed_count']=94 json[lists]['16']['user']['contributors_enabled']= json[lists]['16']['user']['profile_link_color']=2FC2EF json[lists]['16']['user']['protected']= json[lists]['16']['user']['profile_image_url']=http://a2.twimg.com/profile_images/1295526394/image_normal.jpg json[lists]['16']['user']['profile_sidebar_border_color']=181A1E json[lists]['16']['user']['name']=LONGROOF json[lists]['16']['user']['time_zone']=Tokyo json[lists]['16']['user']['screen_name']=longroofitter json[lists]['16']['user']['id']=19338943 json[lists]['16']['user']['profile_use_background_image']=1 json[lists]['16']['user']['utc_offset']=32400 json[lists]['16']['uri']=/longroofitter/hisyotter json[lists]['16']['id']=20514465 json[lists]['17']['user']['profile_background_color']=EDECE9 json[lists]['17']['user']['protected']= json[lists]['17']['user']['default_profile_image']= json[lists]['17']['user']['profile_background_image_url']=http://a2.twimg.com/profile_background_images/85093765/check01.jpg json[lists]['17']['user']['followers_count']=357 json[lists]['17']['user']['location']=関東 json[lists]['17']['user']['name']=ユミ json[lists]['17']['user']['notifications']= json[lists]['17']['user']['profile_image_url']=http://a1.twimg.com/profile_images/730650274/P1000081_normal.JPG json[lists]['17']['user']['id_str']=74404682 json[lists]['17']['user']['is_translator']= json[lists]['17']['user']['utc_offset']=32400 json[lists]['17']['user']['profile_text_color']=634047 json[lists]['17']['user']['url']= json[lists]['17']['user']['follow_request_sent']= json[lists]['17']['user']['friends_count']=376 json[lists]['17']['user']['profile_sidebar_fill_color']=E3E2DE json[lists]['17']['user']['description']=自宅でもお仕事しつつ、表参道でWebデザイナーやってます。日々、webデザイン、グラフィックデザイン、DTP、Flash、JAVASCRIPT、SEOなど勉強中。ネザーランドドワーフに癒されてます。フォローは気軽にどうぞ♪ json[lists]['17']['user']['screen_name']=Rabbitfoot2 json[lists]['17']['user']['lang']=ja json[lists]['17']['user']['profile_background_tile']=1 json[lists]['17']['user']['created_at']=Tue Sep 15 09:02:29 +0000 2009 json[lists]['17']['user']['contributors_enabled']= json[lists]['17']['user']['verified']= json[lists]['17']['user']['show_all_inline_media']= json[lists]['17']['user']['geo_enabled']= json[lists]['17']['user']['favourites_count']=14 json[lists]['17']['user']['profile_link_color']=088253 json[lists]['17']['user']['id']=74404682 json[lists]['17']['user']['listed_count']=22 json[lists]['17']['user']['profile_sidebar_border_color']=D3D2CF json[lists]['17']['user']['default_profile']= json[lists]['17']['user']['time_zone']=Tokyo json[lists]['17']['user']['statuses_count']=1396 json[lists]['17']['user']['following']=1 json[lists]['17']['user']['profile_use_background_image']=1 json[lists]['17']['name']=web json[lists]['17']['id_str']=8259659 json[lists]['17']['uri']=/Rabbitfoot2/web json[lists]['17']['mode']=public json[lists]['17']['description']= json[lists]['17']['slug']=web json[lists]['17']['member_count']=67 json[lists]['17']['id']=8259659 json[lists]['17']['subscriber_count']=1 json[lists]['17']['full_name']=@Rabbitfoot2/web json[lists]['17']['following']= json[lists]['18']['user']['profile_background_color']=FF6699 json[lists]['18']['user']['protected']= json[lists]['18']['user']['default_profile_image']= json[lists]['18']['user']['profile_background_image_url']=http://a3.twimg.com/images/themes/theme11/bg.gif json[lists]['18']['user']['followers_count']=1746 json[lists]['18']['user']['location']=大阪市中央区天満橋 json[lists]['18']['user']['name']=Keiko Takada json[lists]['18']['user']['notifications']= json[lists]['18']['user']['profile_image_url']=http://a2.twimg.com/profile_images/596788827/img.php_normal.jpg json[lists]['18']['user']['id_str']=97559898 json[lists]['18']['user']['is_translator']= json[lists]['18']['user']['utc_offset']=32400 json[lists]['18']['user']['profile_text_color']=362720 json[lists]['18']['user']['url']=http://www.naturum.co.jp/ json[lists]['18']['user']['follow_request_sent']= json[lists]['18']['user']['friends_count']=1622 json[lists]['18']['user']['profile_sidebar_fill_color']=E5507E json[lists]['18']['user']['description']=ナチュラム・イーコマースの営業企画部らへんでサイト最適化やお客様向けサービス企画などをちくちく修行するとともに、社長室という名の寺子屋でも修行中。趣味はキャンプとか料理とかゲームとか万年筆(とインク)。あと、カーナビ・地図が大好物なのでそのへんの情報をひっぱってきます。基本的にお気楽です。 json[lists]['18']['user']['screen_name']=samansa011 json[lists]['18']['user']['lang']=ja json[lists]['18']['user']['profile_background_tile']=1 json[lists]['18']['user']['created_at']=Fri Dec 18 00:34:03 +0000 2009 json[lists]['18']['user']['contributors_enabled']= json[lists]['18']['user']['verified']= json[lists]['18']['user']['show_all_inline_media']= json[lists]['18']['user']['geo_enabled']= json[lists]['18']['user']['favourites_count']=0 json[lists]['18']['user']['profile_link_color']=B40B43 json[lists]['18']['user']['id']=97559898 json[lists]['18']['user']['default_profile']= json[lists]['18']['user']['listed_count']=112 json[lists]['18']['user']['profile_sidebar_border_color']=CC3366 json[lists]['18']['user']['time_zone']=Osaka json[lists]['18']['user']['statuses_count']=9419 json[lists]['18']['user']['following']=1 json[lists]['18']['user']['profile_use_background_image']=1 json[lists]['18']['name']=ec json[lists]['18']['id_str']=7478234 json[lists]['18']['uri']=/samansa011/ec json[lists]['18']['mode']=public json[lists]['18']['description']= json[lists]['18']['slug']=ec json[lists]['18']['member_count']=40 json[lists]['18']['id']=7478234 json[lists]['18']['subscriber_count']=2 json[lists]['18']['full_name']=@samansa011/ec json[lists]['18']['following']= json[lists]['19']['user']['default_profile']= json[lists]['19']['user']['profile_background_color']=cccccc json[lists]['19']['user']['protected']= json[lists]['19']['user']['default_profile_image']= json[lists]['19']['user']['profile_background_image_url']=http://a1.twimg.com/images/themes/theme2/bg.gif json[lists]['19']['user']['followers_count']=2107 json[lists]['19']['user']['location']=大阪府堺市 json[lists]['19']['user']['name']=そん json[lists]['19']['user']['notifications']= json[lists]['19']['user']['profile_image_url']=http://a0.twimg.com/profile_images/1272384406/sonk-twitter_normal.JPG json[lists]['19']['user']['id_str']=30630757 json[lists]['19']['user']['is_translator']= json[lists]['19']['user']['utc_offset']=32400 json[lists]['19']['user']['profile_text_color']=333333 json[lists]['19']['user']['url']=http://sonkunt.blog26.fc2.com/ json[lists]['19']['user']['follow_request_sent']= json[lists]['19']['user']['friends_count']=1788 json[lists]['19']['user']['profile_sidebar_fill_color']=dddddd json[lists]['19']['user']['description']=Web屋。既婚子無。埼玉で暮らす良き弟の兄。toeと夢中夢よく聴く。敬語きらい。タメ口歓迎! json[lists]['19']['user']['screen_name']=sonk json[lists]['19']['user']['lang']=ja json[lists]['19']['user']['profile_background_tile']= json[lists]['19']['user']['created_at']=Sun Apr 12 10:05:00 +0000 2009 json[lists]['19']['user']['contributors_enabled']= json[lists]['19']['user']['verified']= json[lists]['19']['user']['show_all_inline_media']= json[lists]['19']['user']['geo_enabled']=1 json[lists]['19']['user']['favourites_count']=3200 json[lists]['19']['user']['profile_link_color']=8cbd0a json[lists]['19']['user']['id']=30630757 json[lists]['19']['user']['listed_count']=147 json[lists]['19']['user']['profile_sidebar_border_color']=a6a6a6 json[lists]['19']['user']['time_zone']=Osaka json[lists]['19']['user']['statuses_count']=9232 json[lists]['19']['user']['following']=1 json[lists]['19']['user']['profile_use_background_image']= json[lists]['19']['name']=listr json[lists]['19']['id_str']=9913317 json[lists]['19']['uri']=/sonk/listr json[lists]['19']['mode']=public json[lists]['19']['description']= json[lists]['19']['slug']=listr json[lists]['19']['member_count']=70 json[lists]['19']['id']=9913317 json[lists]['19']['subscriber_count']=2 json[lists]['19']['full_name']=@sonk/listr json[lists]['19']['following']= json[next_cursor]=1.35182948626E+18 json[previous_cursor]=0 json[next_cursor_str]=1351829486262454239 json[previous_cursor_str]=0
設置サンプル
設置サンプルサンプルを見る
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="Content-Language" content="ja" /> <meta http-equiv="Content-Script-Type" content="text/javascript" /> <meta http-equiv="Content-Style-Type" content="text/css" /> <meta http-equiv="imagetoolbar" content="no" /> <title>Twitter API:リスト関連:lists/memberships(指定したユーザーが追加されているリスト一覧を取得) | 設置サンプル</title> <link rel="stylesheet" type="text/css" href="/content/lib/global.css" /> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script> <script type="text/javascript" src="/content/lib/jquery/jquery.jsonp.js"></script> <!-- JS --> <script type="text/javascript"> $(function(){ var url="http://api.twitter.com/1/lists/memberships.json?screen_name=cocoism&callback={callback}"; $.getJSONP(url, function(json){ var s=""; $.each(json.lists, function(i, item){ s+="<li><img src='"+item.user.profile_image_url+"' /><a href='http://twitter.com/"+item.user.screen_name+"/"+item.name+"' target='_blank'>@"+item.user.screen_name+" / "+item.name+"</a></li>"; }); $("#res").html("<ul>"+s+"</ul>"); }); }); </script> <style type="text/css"> #res ul { margin:0; padding:0; list-style:none; } #res li { margin:5px; padding:0; list-style:none; line-height:48px; display:block; } #res li img { vertical-align:middle; margin-right:10px; width:48px; height:48px; border:1px solid #ccc; } </style> </head> <body> <div id="wrap"> <h1>Twitter API:リスト関連:lists/memberships(指定したユーザーが追加されているリスト一覧を取得) | 設置サンプル</h1> <p>このAPIは認証不要です。@cocoismをフォローしているリスト一覧を取得して表示します。</p> <!-- CODE --> <h2>@cocoismをフォローしているリスト</h2> <div id="res"></div> <!-- / CODE --> </div> </body> </html>
lists/subscriptions
指定されたユーザがフォローしているリスト一覧を取得(認証不要)
2009/7/18
http://api.twitter.com/1/lists/subscriptions.[xml|json]
指定したユーザがフォローしているリスト一覧を取得します。
パラメーター
パラメーター | 説明 | |
---|---|---|
user_id | 必須 | ユーザーIDを指定。有効なユーザーIDを明確に指定したい場合に使用。 例)http://api.twitter.com/1/lists.xml?user_id=12345 |
screen_name | 必須 | スクリーンネームを指定。ユーザーIDとスクリーンネームが数値で紛らわしい場合に有用。 例)http://api.twitter.com/1/lists.xml?screen_name=cocoism |
cursor | 任意 | 結果をページ分けを指定します。1ページあたり20リストが含まれます。
ページの始まりには「-1」を指定します。前後ページは、取得したデータの中にあるnext_cursorまたはprevious_cursor属性で参照できます。 例)http://api.twitter.com/1/twitterapi/lists/subscriptions.xml?cursor=-1 例)http://api.twitter.com/1/twitterapi/lists/subscriptions.xml?cursor=-1300794057949944903 |
取得サンプル(XML/JSON)
subscriptions.xml
<?xml version="1.0" encoding="UTF-8"?> <lists_list> <lists type="array"> <list> <id>22849333</id> <name>best1</name> <full_name>@Paellia/best1</full_name> <slug>best1</slug> <description>my-followers</description> <subscriber_count>93</subscriber_count> <member_count>476</member_count> <uri>/Paellia/best1</uri> <following>false</following> <mode>public</mode> <user> <id>192888301</id> <name>Paellia</name> <screen_name>Paellia</screen_name> <location>群馬県・渋川市</location> <description>I follow back■相互フォロー確実フォロー返し100%リフォロー■恋愛、良縁、結婚、復活愛、復縁成就等のおまじないの創作販売。おまじないは眉唾物って思われがちですが効果が同期して幸運が起きるとそれが現実だとわかります。自己啓発は自分が変わるだけですが、おまじないは他人が変わるので皆様驚かれます。無料相談あり</description> <profile_image_url>http://a3.twimg.com/profile_images/1149082824/Paellia_normal.jpg</profile_image_url> <url>http://omajinai.shop-pro.jp/</url> <protected>false</protected> <followers_count>24107</followers_count> <profile_background_color>C0DEED</profile_background_color> <profile_text_color>333333</profile_text_color> <profile_link_color>0084B4</profile_link_color> <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color> <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color> <friends_count>26515</friends_count> <created_at>Mon Sep 20 12:44:05 +0000 2010</created_at> <favourites_count>7</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a3.twimg.com/profile_background_images/217327858/0316-1.jpg</profile_background_image_url> <profile_background_tile>true</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications></notifications> <geo_enabled>false</geo_enabled> <verified>false</verified> <following></following> <statuses_count>27810</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent></follow_request_sent> <listed_count>464</listed_count> <show_all_inline_media>false</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> </list> <list> <id>17473457</id> <name>speakers</name> <full_name>@adtechtokyo/speakers</full_name> <slug>speakers</slug> <description></description> <subscriber_count>39</subscriber_count> <member_count>1</member_count> <uri>/adtechtokyo/speakers</uri> <following>false</following> <mode>public</mode> <user> <id>53609537</id> <name>dmg::events Japan</name> <screen_name>adtechtokyo</screen_name> <location>Tokyo</location> <description>国際カンファレンスad:techを主催するdmg:events社の日本法人です。</description> <profile_image_url>http://a1.twimg.com/profile_images/1223074556/adtech2011-1_normal.jpg</profile_image_url> <url>http://www.adtech-tokyo.com/</url> <protected>false</protected> <followers_count>2671</followers_count> <profile_background_color>1A1B1F</profile_background_color> <profile_text_color>666666</profile_text_color> <profile_link_color>2FC2EF</profile_link_color> <profile_sidebar_fill_color>252429</profile_sidebar_fill_color> <profile_sidebar_border_color>181A1E</profile_sidebar_border_color> <friends_count>2374</friends_count> <created_at>Sat Jul 04 06:02:20 +0000 2009</created_at> <favourites_count>2</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a3.twimg.com/profile_background_images/55097591/1.jpg</profile_background_image_url> <profile_background_tile>true</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>false</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>1646</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>285</listed_count> <show_all_inline_media>false</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> </list> <list> <id>4255442</id> <name>question</name> <full_name>@qanow/question</full_name> <slug>question</slug> <description>Q&A</description> <subscriber_count>43463</subscriber_count> <member_count>1</member_count> <uri>/qanow/question</uri> <following>true</following> <mode>public</mode> <user> <id>89322949</id> <name>qanow</name> <screen_name>qanow</screen_name> <location></location> <description>『Q&Aなう』はtwitterを利用したリアルタイムQ&Aサイトです。従来のQ&Aサイトにはなかったリアルタイム性が最大の特長です。質問と回答は⇒http://qa-now.com/q TLが埋まってしまう場合はリスト機能推奨</description> <profile_image_url>http://a1.twimg.com/profile_images/923710597/qanow_normal.png</profile_image_url> <url>http://qa-now.com/</url> <protected>false</protected> <followers_count>6340</followers_count> <profile_background_color>C0DEED</profile_background_color> <profile_text_color>333333</profile_text_color> <profile_link_color>0084B4</profile_link_color> <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color> <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color> <friends_count>1</friends_count> <created_at>Thu Nov 12 00:08:55 +0000 2009</created_at> <favourites_count>0</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a3.twimg.com/images/themes/theme1/bg.png</profile_background_image_url> <profile_background_tile>false</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>false</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>545070</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>1418</listed_count> <show_all_inline_media>false</show_all_inline_media> <default_profile>true</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> </list> <list> <id>1032545</id> <name>chocolate</name> <full_name>@chocablog/chocolate</full_name> <slug>chocolate</slug> <description></description> <subscriber_count>264</subscriber_count> <member_count>218</member_count> <uri>/chocablog/chocolate</uri> <following>false</following> <mode>public</mode> <user> <id>2141091</id> <name>Chocablog</name> <screen_name>chocablog</screen_name> <location>London, UK</location> <description>Chocablog is The Chocolate Blog!</description> <profile_image_url>http://a0.twimg.com/profile_images/190098669/choc_normal.png</profile_image_url> <url>http://www.chocablog.com/</url> <protected>false</protected> <followers_count>4407</followers_count> <profile_background_color>352726</profile_background_color> <profile_text_color>3E4415</profile_text_color> <profile_link_color>93432f</profile_link_color> <profile_sidebar_fill_color>d1a961</profile_sidebar_fill_color> <profile_sidebar_border_color>D1A961</profile_sidebar_border_color> <friends_count>642</friends_count> <created_at>Sat Mar 24 23:24:46 +0000 2007</created_at> <favourites_count>0</favourites_count> <utc_offset>0</utc_offset> <time_zone>London</time_zone> <profile_background_image_url>http://a3.twimg.com/profile_background_images/112470583/wispa.jpg</profile_background_image_url> <profile_background_tile>true</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>true</geo_enabled> <verified>false</verified> <following>true</following> <statuses_count>5538</statuses_count> <lang>en</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>235</listed_count> <show_all_inline_media>true</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> </list> <list> <id>4771041</id> <name>jquery</name> <full_name>@web2feed/jquery</full_name> <slug>jquery</slug> <description></description> <subscriber_count>49</subscriber_count> <member_count>500</member_count> <uri>/web2feed/jquery</uri> <following>false</following> <mode>public</mode> <user> <id>55187700</id> <name>Michael Davis</name> <screen_name>web2feed</screen_name> <location>San Francisco, California</location> <description>I tweet hot Web 2.0 stuff! Coding, design, webdev, social media & more. Trying to act human ;)</description> <profile_image_url>http://a2.twimg.com/profile_images/304998018/icon_128_normal.png</profile_image_url> <url></url> <protected>false</protected> <followers_count>4919</followers_count> <profile_background_color>ffffff</profile_background_color> <profile_text_color>333333</profile_text_color> <profile_link_color>088cff</profile_link_color> <profile_sidebar_fill_color>f0f0f0</profile_sidebar_fill_color> <profile_sidebar_border_color>eeeeee</profile_sidebar_border_color> <friends_count>211</friends_count> <created_at>Thu Jul 09 09:11:43 +0000 2009</created_at> <favourites_count>0</favourites_count> <utc_offset>-28800</utc_offset> <time_zone>Pacific Time (US & Canada)</time_zone> <profile_background_image_url>http://a1.twimg.com/profile_background_images/118353240/twibots-bg.png</profile_background_image_url> <profile_background_tile>true</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>true</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>105326</statuses_count> <lang>en</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>376</listed_count> <show_all_inline_media>false</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> </list> <list> <id>821306</id> <name>Ad_Marketing_Media</name> <full_name>@co_jit/ad-marketing-media</full_name> <slug>ad-marketing-media</slug> <description>広告・マーケティング業界、マス&Web メディア関係者</description> <subscriber_count>125</subscriber_count> <member_count>490</member_count> <uri>/co_jit/ad-marketing-media</uri> <following>false</following> <mode>public</mode> <user> <id>14567929</id> <name>Koji Takeuchi</name> <screen_name>co_jit</screen_name> <location>愛知県小牧市桃花台 Komaki,Aichi,Japan</location> <description>(株)みどり Web & 組み込みアプリエンジニア。言語は、PHP, JS, C/C++。広告イベントの営業経験も。興味は、web・メディア・音楽・お笑い・名古屋グランパスなど。Android au IS03 & Apple iPod touch ユーザ。fb/co.jit 中部大学 出身。 </description> <profile_image_url>http://a2.twimg.com/profile_images/1203306302/jollibee_facezm_normal.jpg</profile_image_url> <url>http://iddy.jp/profile/co_jit/</url> <protected>false</protected> <followers_count>3500</followers_count> <profile_background_color>E9FFFC</profile_background_color> <profile_text_color>383838</profile_text_color> <profile_link_color>038f5c</profile_link_color> <profile_sidebar_fill_color>f7f266</profile_sidebar_fill_color> <profile_sidebar_border_color>c29b00</profile_sidebar_border_color> <friends_count>3447</friends_count> <created_at>Mon Apr 28 11:13:39 +0000 2008</created_at> <favourites_count>3200</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a0.twimg.com/profile_background_images/68572999/burt_clifton_thinkmakethink_temp_artworkimage_1_1.jpg</profile_background_image_url> <profile_background_tile>true</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>false</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>24674</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>164</listed_count> <show_all_inline_media>false</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> </list> <list> <id>1403195</id> <name>market</name> <full_name>@kawaiyukiko/market</full_name> <slug>market</slug> <description></description> <subscriber_count>5</subscriber_count> <member_count>14</member_count> <uri>/kawaiyukiko/market</uri> <following>false</following> <mode>public</mode> <user> <id>83088868</id> <name>kawaiyukiko </name> <screen_name>kawaiyukiko</screen_name> <location>Tokyo</location> <description>i ♥ art.</description> <profile_image_url>http://a2.twimg.com/profile_images/1172019825/image_normal.jpg</profile_image_url> <url>http://www.facebook.com/kawaiyukiko</url> <protected>false</protected> <followers_count>231</followers_count> <profile_background_color>FF6699</profile_background_color> <profile_text_color>362720</profile_text_color> <profile_link_color>B40B43</profile_link_color> <profile_sidebar_fill_color>fff0f4</profile_sidebar_fill_color> <profile_sidebar_border_color>ffffff</profile_sidebar_border_color> <friends_count>264</friends_count> <created_at>Sat Oct 17 08:29:09 +0000 2009</created_at> <favourites_count>58</favourites_count> <utc_offset>32400</utc_offset> <time_zone>Tokyo</time_zone> <profile_background_image_url>http://a2.twimg.com/profile_background_images/52615694/tv_hearts_stamps.png</profile_background_image_url> <profile_background_tile>true</profile_background_tile> <profile_use_background_image>true</profile_use_background_image> <notifications>false</notifications> <geo_enabled>false</geo_enabled> <verified>false</verified> <following>false</following> <statuses_count>355</statuses_count> <lang>ja</lang> <contributors_enabled>false</contributors_enabled> <follow_request_sent>false</follow_request_sent> <listed_count>20</listed_count> <show_all_inline_media>false</show_all_inline_media> <default_profile>false</default_profile> <default_profile_image>false</default_profile_image> <is_translator>false</is_translator> </user> </list> </lists> <next_cursor>0</next_cursor> <previous_cursor>0</previous_cursor> </lists_list>
subscriptions.json
json[lists]['0']['user']['is_translator']= json[lists]['0']['user']['statuses_count']=27782 json[lists]['0']['user']['profile_link_color']=0084B4 json[lists]['0']['user']['protected']= json[lists]['0']['user']['location']=群馬県・渋川市 json[lists]['0']['user']['profile_sidebar_border_color']=C0DEED json[lists]['0']['user']['name']=Paellia json[lists]['0']['user']['time_zone']=Tokyo json[lists]['0']['user']['url']=http://omajinai.shop-pro.jp/ json[lists]['0']['user']['listed_count']=523 json[lists]['0']['user']['profile_use_background_image']=1 json[lists]['0']['user']['utc_offset']=32400 json[lists]['0']['user']['verified']= json[lists]['0']['user']['created_at']=Mon Sep 20 12:44:05 +0000 2010 json[lists]['0']['user']['profile_background_color']=C0DEED json[lists]['0']['user']['description']=I follow back■相互フォロー確実フォロー返し100%リフォロー■恋愛、良縁、結婚、復活愛、復縁成就等のおまじないの創作販売。おまじないは眉唾物って思われがちですが効果が同期して幸運が起きるとそれが現実だとわかります。自己啓発は自分が変わるだけですが、おまじないは他人が変わるので皆様驚かれます。無料相談あり json[lists]['0']['user']['default_profile']= json[lists]['0']['user']['lang']=ja json[lists]['0']['user']['profile_background_image_url']=http://a3.twimg.com/profile_background_images/217327858/0316-1.jpg json[lists]['0']['user']['id_str']=192888301 json[lists]['0']['user']['default_profile_image']= json[lists]['0']['user']['contributors_enabled']= json[lists]['0']['user']['profile_text_color']=333333 json[lists]['0']['user']['id']=192888301 json[lists]['0']['user']['show_all_inline_media']= json[lists]['0']['user']['geo_enabled']= json[lists]['0']['user']['profile_sidebar_fill_color']=DDEEF6 json[lists]['0']['user']['profile_image_url']=http://a3.twimg.com/profile_images/1149082824/Paellia_normal.jpg json[lists]['0']['user']['profile_background_tile']=1 json[lists]['0']['user']['favourites_count']=7 json[lists]['0']['user']['followers_count']=24075 json[lists]['0']['user']['follow_request_sent']= json[lists]['0']['user']['following']=1 json[lists]['0']['user']['notifications']= json[lists]['0']['user']['friends_count']=26480 json[lists]['0']['user']['screen_name']=Paellia json[lists]['0']['subscriber_count']=93 json[lists]['0']['name']=best1 json[lists]['0']['slug']=best1 json[lists]['0']['uri']=/Paellia/best1 json[lists]['0']['mode']=public json[lists]['0']['description']=my-followers json[lists]['0']['id_str']=22849333 json[lists]['0']['id']=22849333 json[lists]['0']['member_count']=476 json[lists]['0']['full_name']=@Paellia/best1 json[lists]['0']['following']= json[lists]['1']['user']['default_profile_image']= json[lists]['1']['user']['profile_background_color']=1A1B1F json[lists]['1']['user']['protected']= json[lists]['1']['user']['profile_background_image_url']=http://a3.twimg.com/profile_background_images/55097591/1.jpg json[lists]['1']['user']['friends_count']=2374 json[lists]['1']['user']['followers_count']=2671 json[lists]['1']['user']['location']=Tokyo json[lists]['1']['user']['name']=dmg::events Japan json[lists]['1']['user']['is_translator']= json[lists]['1']['user']['notifications']= json[lists]['1']['user']['profile_image_url']=http://a1.twimg.com/profile_images/1223074556/adtech2011-1_normal.jpg json[lists]['1']['user']['id_str']=53609537 json[lists]['1']['user']['default_profile']= json[lists]['1']['user']['show_all_inline_media']= json[lists]['1']['user']['follow_request_sent']= json[lists]['1']['user']['contributors_enabled']= json[lists]['1']['user']['geo_enabled']= json[lists]['1']['user']['utc_offset']=32400 json[lists]['1']['user']['profile_text_color']=666666 json[lists]['1']['user']['url']=http://www.adtech-tokyo.com/ json[lists]['1']['user']['profile_sidebar_fill_color']=252429 json[lists]['1']['user']['description']=国際カンファレンスad:techを主催するdmg:events社の日本法人です。 json[lists]['1']['user']['screen_name']=adtechtokyo json[lists]['1']['user']['lang']=ja json[lists]['1']['user']['profile_background_tile']=1 json[lists]['1']['user']['created_at']=Sat Jul 04 06:02:20 +0000 2009 json[lists]['1']['user']['statuses_count']=1646 json[lists]['1']['user']['verified']= json[lists]['1']['user']['listed_count']=285 json[lists]['1']['user']['favourites_count']=2 json[lists]['1']['user']['profile_link_color']=2FC2EF json[lists]['1']['user']['id']=53609537 json[lists]['1']['user']['profile_sidebar_border_color']=181A1E json[lists]['1']['user']['time_zone']=Tokyo json[lists]['1']['user']['following']= json[lists]['1']['user']['profile_use_background_image']=1 json[lists]['1']['name']=speakers json[lists]['1']['id_str']=17473457 json[lists]['1']['uri']=/adtechtokyo/speakers json[lists]['1']['mode']=public json[lists]['1']['description']= json[lists]['1']['slug']=speakers json[lists]['1']['member_count']=1 json[lists]['1']['id']=17473457 json[lists]['1']['subscriber_count']=39 json[lists]['1']['full_name']=@adtechtokyo/speakers json[lists]['1']['following']= json[lists]['2']['user']['friends_count']=1 json[lists]['2']['user']['profile_background_color']=C0DEED json[lists]['2']['user']['protected']= json[lists]['2']['user']['is_translator']= json[lists]['2']['user']['profile_background_image_url']=http://a3.twimg.com/images/themes/theme1/bg.png json[lists]['2']['user']['followers_count']=6340 json[lists]['2']['user']['location']= json[lists]['2']['user']['name']=qanow json[lists]['2']['user']['follow_request_sent']= json[lists]['2']['user']['contributors_enabled']= json[lists]['2']['user']['notifications']= json[lists]['2']['user']['profile_image_url']=http://a1.twimg.com/profile_images/923710597/qanow_normal.png json[lists]['2']['user']['id_str']=89322949 json[lists]['2']['user']['utc_offset']=32400 json[lists]['2']['user']['profile_text_color']=333333 json[lists]['2']['user']['url']=http://qa-now.com/ json[lists]['2']['user']['show_all_inline_media']= json[lists]['2']['user']['geo_enabled']= json[lists]['2']['user']['profile_sidebar_fill_color']=DDEEF6 json[lists]['2']['user']['description']=『Q&Aなう』はtwitterを利用したリアルタイムQ&Aサイトです。従来のQ&Aサイトにはなかったリアルタイム性が最大の特長です。質問と回答は⇒http://qa-now.com/q TLが埋まってしまう場合はリスト機能推奨 json[lists]['2']['user']['screen_name']=qanow json[lists]['2']['user']['lang']=ja json[lists]['2']['user']['profile_background_tile']= json[lists]['2']['user']['created_at']=Thu Nov 12 00:08:55 +0000 2009 json[lists]['2']['user']['listed_count']=1418 json[lists]['2']['user']['verified']= json[lists]['2']['user']['statuses_count']=545070 json[lists]['2']['user']['favourites_count']=0 json[lists]['2']['user']['profile_link_color']=0084B4 json[lists]['2']['user']['id']=89322949 json[lists]['2']['user']['profile_sidebar_border_color']=C0DEED json[lists]['2']['user']['time_zone']=Tokyo json[lists]['2']['user']['default_profile_image']= json[lists]['2']['user']['default_profile']=1 json[lists]['2']['user']['following']= json[lists]['2']['user']['profile_use_background_image']=1 json[lists]['2']['name']=question json[lists]['2']['id_str']=4255442 json[lists]['2']['uri']=/qanow/question json[lists]['2']['mode']=public json[lists]['2']['description']=Q&A json[lists]['2']['slug']=question json[lists]['2']['member_count']=1 json[lists]['2']['id']=4255442 json[lists]['2']['subscriber_count']=43463 json[lists]['2']['full_name']=@qanow/question json[lists]['2']['following']=1 json[lists]['3']['user']['follow_request_sent']= json[lists]['3']['user']['contributors_enabled']= json[lists]['3']['user']['profile_background_color']=352726 json[lists]['3']['user']['protected']= json[lists]['3']['user']['profile_background_image_url']=http://a3.twimg.com/profile_background_images/112470583/wispa.jpg json[lists]['3']['user']['followers_count']=4406 json[lists]['3']['user']['location']=London, UK json[lists]['3']['user']['name']=Chocablog json[lists]['3']['user']['show_all_inline_media']=1 json[lists]['3']['user']['geo_enabled']=1 json[lists]['3']['user']['notifications']= json[lists]['3']['user']['profile_image_url']=http://a0.twimg.com/profile_images/190098669/choc_normal.png json[lists]['3']['user']['id_str']=2141091 json[lists]['3']['user']['default_profile']= json[lists]['3']['user']['utc_offset']=0 json[lists]['3']['user']['profile_text_color']=3E4415 json[lists]['3']['user']['url']=http://www.chocablog.com/ json[lists]['3']['user']['listed_count']=235 json[lists]['3']['user']['profile_sidebar_fill_color']=d1a961 json[lists]['3']['user']['description']=Chocablog is The Chocolate Blog! json[lists]['3']['user']['screen_name']=chocablog json[lists]['3']['user']['lang']=en json[lists]['3']['user']['statuses_count']=5532 json[lists]['3']['user']['profile_background_tile']=1 json[lists]['3']['user']['created_at']=Sat Mar 24 23:24:46 +0000 2007 json[lists]['3']['user']['verified']= json[lists]['3']['user']['favourites_count']=0 json[lists]['3']['user']['profile_link_color']=93432f json[lists]['3']['user']['id']=2141091 json[lists]['3']['user']['default_profile_image']= json[lists]['3']['user']['profile_sidebar_border_color']=D1A961 json[lists]['3']['user']['time_zone']=London json[lists]['3']['user']['friends_count']=641 json[lists]['3']['user']['is_translator']= json[lists]['3']['user']['following']=1 json[lists]['3']['user']['profile_use_background_image']=1 json[lists]['3']['name']=chocolate json[lists]['3']['id_str']=1032545 json[lists]['3']['uri']=/chocablog/chocolate json[lists]['3']['mode']=public json[lists]['3']['description']= json[lists]['3']['slug']=chocolate json[lists]['3']['member_count']=218 json[lists]['3']['id']=1032545 json[lists]['3']['subscriber_count']=264 json[lists]['3']['full_name']=@chocablog/chocolate json[lists]['3']['following']= json[lists]['4']['mode']=public json[lists]['4']['description']= json[lists]['4']['following']= json[lists]['4']['member_count']=500 json[lists]['4']['slug']=jquery json[lists]['4']['full_name']=@web2feed/jquery json[lists]['4']['name']=jquery json[lists]['4']['user']['lang']=en json[lists]['4']['user']['profile_sidebar_fill_color']=f0f0f0 json[lists]['4']['user']['listed_count']=370 json[lists]['4']['user']['profile_background_tile']=1 json[lists]['4']['user']['url']= json[lists]['4']['user']['description']=I tweet hot Web 2.0 stuff! Coding, design, webdev, social media & more. Trying to act human ;) json[lists]['4']['user']['notifications']= json[lists]['4']['user']['time_zone']=Pacific Time (US & Canada) json[lists]['4']['user']['created_at']=Thu Jul 09 09:11:43 +0000 2009 json[lists]['4']['user']['profile_link_color']=088cff json[lists]['4']['user']['contributors_enabled']= json[lists]['4']['user']['favourites_count']=0 json[lists]['4']['user']['profile_sidebar_border_color']=eeeeee json[lists]['4']['user']['default_profile_image']= json[lists]['4']['user']['show_all_inline_media']= json[lists]['4']['user']['following']= json[lists]['4']['user']['geo_enabled']=1 json[lists]['4']['user']['profile_image_url']=http://a1.twimg.com/profile_images/304998018/icon_128_normal.png json[lists]['4']['user']['default_profile']= json[lists]['4']['user']['verified']= json[lists]['4']['user']['profile_use_background_image']=1 json[lists]['4']['user']['followers_count']=4915 json[lists]['4']['user']['profile_background_color']=ffffff json[lists]['4']['user']['protected']= json[lists]['4']['user']['screen_name']=web2feed json[lists]['4']['user']['follow_request_sent']= json[lists]['4']['user']['statuses_count']=103794 json[lists]['4']['user']['profile_background_image_url']=http://a0.twimg.com/profile_background_images/118353240/twibots-bg.png json[lists]['4']['user']['friends_count']=211 json[lists]['4']['user']['name']=Michael Davis json[lists]['4']['user']['is_translator']= json[lists]['4']['user']['profile_image_url_https']=https://si2.twimg.com/profile_images/304998018/icon_128_normal.png json[lists]['4']['user']['id']=55187700 json[lists]['4']['user']['id_str']=55187700 json[lists]['4']['user']['profile_background_image_url_https']=https://si1.twimg.com/profile_background_images/118353240/twibots-bg.png json[lists]['4']['user']['utc_offset']=-28800 json[lists]['4']['user']['profile_text_color']=333333 json[lists]['4']['user']['location']=San Francisco, California json[lists]['4']['uri']=/web2feed/jquery json[lists]['4']['subscriber_count']=49 json[lists]['4']['id']=4771041 json[lists]['4']['id_str']=4771041 json[lists]['5']['user']['profile_background_color']=E9FFFC json[lists]['5']['user']['protected']= json[lists]['5']['user']['statuses_count']=24659 json[lists]['5']['user']['profile_background_image_url']=http://a0.twimg.com/profile_background_images/68572999/burt_clifton_thinkmakethink_temp_artworkimage_1_1.jpg json[lists]['5']['user']['followers_count']=3496 json[lists]['5']['user']['location']=愛知県小牧市桃花台 Komaki,Aichi,Japan json[lists]['5']['user']['name']=Koji Takeuchi json[lists]['5']['user']['default_profile']= json[lists]['5']['user']['notifications']= json[lists]['5']['user']['profile_image_url']=http://a2.twimg.com/profile_images/1203306302/jollibee_facezm_normal.jpg json[lists]['5']['user']['id_str']=14567929 json[lists]['5']['user']['default_profile_image']= json[lists]['5']['user']['utc_offset']=32400 json[lists]['5']['user']['profile_text_color']=383838 json[lists]['5']['user']['url']=http://iddy.jp/profile/co_jit/ json[lists]['5']['user']['profile_sidebar_fill_color']=f7f266 json[lists]['5']['user']['description']=(株)みどり Web & 組み込みアプリエンジニア。言語は、PHP, JS, C/C++。広告イベントの営業経験も。興味は、web・メディア・音楽・お笑い・名古屋グランパスなど。Android au IS03 & Apple iPod touch ユーザ。fb/co.jit 中部大学 出身。 json[lists]['5']['user']['screen_name']=co_jit json[lists]['5']['user']['is_translator']= json[lists]['5']['user']['lang']=ja json[lists]['5']['user']['profile_background_tile']=1 json[lists]['5']['user']['created_at']=Mon Apr 28 11:13:39 +0000 2008 json[lists]['5']['user']['follow_request_sent']= json[lists]['5']['user']['verified']= json[lists]['5']['user']['friends_count']=3448 json[lists]['5']['user']['favourites_count']=3200 json[lists]['5']['user']['profile_link_color']=038f5c json[lists]['5']['user']['id']=14567929 json[lists]['5']['user']['contributors_enabled']= json[lists]['5']['user']['profile_sidebar_border_color']=c29b00 json[lists]['5']['user']['show_all_inline_media']= json[lists]['5']['user']['geo_enabled']= json[lists]['5']['user']['time_zone']=Tokyo json[lists]['5']['user']['listed_count']=164 json[lists]['5']['user']['following']= json[lists]['5']['user']['profile_use_background_image']=1 json[lists]['5']['name']=Ad_Marketing_Media json[lists]['5']['id_str']=821306 json[lists]['5']['uri']=/co_jit/ad-marketing-media json[lists]['5']['mode']=public json[lists]['5']['description']=広告・マーケティング業界、マス&Web メディア関係者 json[lists]['5']['slug']=ad-marketing-media json[lists]['5']['member_count']=490 json[lists]['5']['id']=821306 json[lists]['5']['subscriber_count']=125 json[lists]['5']['full_name']=@co_jit/ad-marketing-media json[lists]['5']['following']= json[lists]['6']['user']['default_profile_image']= json[lists]['6']['user']['profile_background_color']=FF6699 json[lists]['6']['user']['protected']= json[lists]['6']['user']['profile_background_image_url']=http://a2.twimg.com/profile_background_images/52615694/tv_hearts_stamps.png json[lists]['6']['user']['friends_count']=264 json[lists]['6']['user']['followers_count']=231 json[lists]['6']['user']['location']=Tokyo json[lists]['6']['user']['name']=kawaiyukiko json[lists]['6']['user']['is_translator']= json[lists]['6']['user']['notifications']= json[lists]['6']['user']['profile_image_url']=http://a2.twimg.com/profile_images/1172019825/image_normal.jpg json[lists]['6']['user']['id_str']=83088868 json[lists]['6']['user']['default_profile']= json[lists]['6']['user']['show_all_inline_media']= json[lists]['6']['user']['follow_request_sent']= json[lists]['6']['user']['contributors_enabled']= json[lists]['6']['user']['geo_enabled']= json[lists]['6']['user']['utc_offset']=32400 json[lists]['6']['user']['profile_text_color']=362720 json[lists]['6']['user']['url']=http://www.facebook.com/kawaiyukiko json[lists]['6']['user']['profile_sidebar_fill_color']=fff0f4 json[lists]['6']['user']['description']=i ♥ art. json[lists]['6']['user']['screen_name']=kawaiyukiko json[lists]['6']['user']['lang']=ja json[lists]['6']['user']['profile_background_tile']=1 json[lists]['6']['user']['created_at']=Sat Oct 17 08:29:09 +0000 2009 json[lists]['6']['user']['statuses_count']=355 json[lists]['6']['user']['verified']= json[lists]['6']['user']['listed_count']=20 json[lists]['6']['user']['favourites_count']=58 json[lists]['6']['user']['profile_link_color']=B40B43 json[lists]['6']['user']['id']=83088868 json[lists]['6']['user']['profile_sidebar_border_color']=ffffff json[lists]['6']['user']['time_zone']=Tokyo json[lists]['6']['user']['following']= json[lists]['6']['user']['profile_use_background_image']=1 json[lists]['6']['name']=market json[lists]['6']['id_str']=1403195 json[lists]['6']['uri']=/kawaiyukiko/market json[lists]['6']['mode']=public json[lists]['6']['description']= json[lists]['6']['slug']=market json[lists]['6']['member_count']=14 json[lists]['6']['id']=1403195 json[lists]['6']['subscriber_count']=5 json[lists]['6']['full_name']=@kawaiyukiko/market json[lists]['6']['following']= json[next_cursor]=0 json[previous_cursor]=0 json[next_cursor_str]=0 json[previous_cursor_str]=0
設置サンプル
設置サンプルサンプルを見る
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="Content-Language" content="ja" /> <meta http-equiv="Content-Script-Type" content="text/javascript" /> <meta http-equiv="Content-Style-Type" content="text/css" /> <meta http-equiv="imagetoolbar" content="no" /> <title>Twitter API:リスト関連:lists/subscriptions(指定したユーザーがフォローしているリスト一覧を取得) | 設置サンプル</title> <link rel="stylesheet" type="text/css" href="/content/lib/global.css" /> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script> <script type="text/javascript" src="/content/lib/jquery/jquery.jsonp.js"></script> <!-- JS --> <script type="text/javascript"> $(function(){ var url="http://api.twitter.com/1/lists/subscriptions.json?screen_name=cocoism&callback={callback}"; $.getJSONP(url, function(json){ var s=""; $.each(json.lists, function(i, item){ s+="<li><img src='"+item.user.profile_image_url+"' /><a href='http://twitter.com/"+item.user.screen_name+"/"+item.name+"' target='_blank'>@"+item.user.screen_name+" / "+item.name+"</a></li>"; }); $("#res").html("<ul>"+s+"</ul>"); }); }); </script> <style type="text/css"> #res ul { margin:0; padding:0; list-style:none; } #res li { margin:5px; padding:0; list-style:none; line-height:48px; display:block; } #res li img { vertical-align:middle; margin-right:10px; width:48px; height:48px; border:1px solid #ccc; } </style> </head> <body> <div id="wrap"> <h1>Twitter API:リスト関連:lists/subscriptions(指定したユーザーがフォローしているリスト一覧を取得) | 設置サンプル</h1> <p>このAPIは認証不要です。@cocoismがフォローしているリスト一覧を取得して表示します。</p> <!-- CODE --> <h2>@cocoismがフォローしているリスト</h2> <div id="res"></div> <!-- / CODE --> </div> </body> </html>