facebook twitter hatena line email

「Twitter」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
行11: 行11:
 
*http://badge.heartrails.com/#embed サイドバッジ作成
 
*http://badge.heartrails.com/#embed サイドバッジ作成
  
 
 
==TwitterAPI仕様==
 
*http://apiwiki.twitter.com/w/page/22554679/Twitter-API-Documentation
 
*http://framework.zend.com/manual/ja/zend.service.twitter.html
 
 
==twitterAPIプロフィール構成==
 
<<nowiki />user>
 
  <<nowiki />id>21922958</id>
 
  <<nowiki />name>xxx</name>
 
  <<nowiki />screen_name>xxx</screen_name>
 
  <<nowiki />location/>
 
  <<nowiki />description>as3,flex4,flashdevelop,zend,twitter,</description>
 
  <<nowiki />profile_image_url>http://a2.twimg.com/sticky/default_profile_images/default_profile_5_normal.png</profile_image_url>
 
  <<nowiki />url/>
 
  <<nowiki />protected>false</protected>
 
  <<nowiki />followers_count>4</followers_count>
 
  <<nowiki />profile_background_color>C0DEED</profile_background_color>
 
  <<nowiki />profile_text_color>333333</profile_text_color>
 
  <<nowiki />profile_link_color>0084B4</profile_link_color>
 
  <<nowiki />profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color>
 
  <<nowiki />profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
 
  <<nowiki />friends_count>25</friends_count>
 
  <<nowiki />created_at>Wed Nov 24 08:34:56 +0000 2010</created_at>
 
  <<nowiki />favourites_count>0</favourites_count>
 
  <<nowiki />utc_offset>32400</utc_offset>
 
  <<nowiki />time_zone>Tokyo</time_zone>
 
  <<nowiki />profile_background_image_url>http://a3.twimg.com/a/1298064126/images/themes/theme1/bg.png</profile_background_image_url>
 
  <<nowiki />profile_background_tile>false</profile_background_tile>
 
  <<nowiki />profile_use_background_image>true</profile_use_background_image>
 
  <<nowiki />notifications>false</notifications>
 
  <<nowiki />geo_enabled>false</geo_enabled>
 
  <<nowiki />verified>false</verified>
 
  <<nowiki />following>false</following>
 
  <<nowiki />statuses_count>14</statuses_count>
 
  <<nowiki />lang>ja</lang>
 
  <<nowiki />contributors_enabled>false</contributors_enabled>
 
  <<nowiki />follow_request_sent>false</follow_request_sent>
 
  <<nowiki />listed_count>0</listed_count>
 
  <<nowiki />show_all_inline_media>false</show_all_inline_media>
 
  <<nowiki />is_translator>false</is_translator>
 
  <<nowiki />status>
 
    <<nowiki />created_at>Sat Feb 19 11:19:40 +0000 2011</created_at>
 
    <<nowiki />id>38920651125301248</id>
 
    <<nowiki />text>twitterフォローすべきリスト</text>
 
    <<nowiki />source>web</source>
 
    <<nowiki />truncated>false</truncated>
 
    <<nowiki />favorited>false</favorited>
 
    <<nowiki />in_reply_to_status_id/>
 
    <<nowiki />in_reply_to_user_id/>
 
    <<nowiki />in_reply_to_screen_name/>
 
    <<nowiki />retweet_count>0</retweet_count>
 
    <<nowiki />retweeted>false</retweeted>
 
    <<nowiki />geo/>
 
    <<nowiki />coordinates/>
 
    <<nowiki />place/>
 
    <<nowiki />contributors/>
 
  </status>
 
</user>
 
  
 
==Twitter負荷についてメモ==
 
==Twitter負荷についてメモ==

2015年11月3日 (火) 01:30時点における版

twitter/開発

twitter/有名人

twitter/ボタン

リンク集


Twitter負荷についてメモ

http://www.atmarkit.co.jp/news/201004/19/twitter.html
http://techtarget.itmedia.co.jp/tt/news/0709/12/news01.html
http://alpha.mixi.co.jp/blog/?p=195

twitter1.0廃止対応

2013/3/5で廃止となる

  • 1.1からは以下のようにAPI接続制限がかかる

以下はレスポンスheaderから閲覧可能

[http_header] => Array
(
[x_rate_limit_limit] => 15 // 回数
[x_rate_limit_remaining] => 0 // 残り回数
[x_rate_limit_reset] => 1362556894 //復活日時
)
残り回数0のときはレスポンスコードは429を返す
if ($http_code == 429) {

twitterカード申請

https://cards-dev.twitter.com/validator

twitterAPIリクエスト制限回数

  • 各apiごとに制限回数が違う
  • users/showだと15分間に180回までok

https://dev.twitter.com/rest/public/rate-limits

人気ツイート検索方法

ツイートが10件以上

min_retweets:10

お気に入りが10件以上

min_faves:10

ツイートが10件以上 か お気に入りが10件以上

min_retweets:10 OR min_faves:10

返信数が10件以上

min_replies:10

ポジティブツイート

:)

ネガティブツイート

:(

期間指定

since:2015-08-27 until:2015-08-29

投稿場所

near:shibuya

言語指定

lang:ja

リンクを含むツイートのみ

filter:links

画像限定

filter:images

動画限定

filter:videos

vine限定

filter:vine

その他はこちら https://syncer.jp/twitter-api-matome/get/search/tweets

twitter/api [dir]