Category
- 1/43 Car's (246)
- Bouldering (14)
- Camera (32)
- Computer (41)
- Everyday (134)
- Goods (12)
- Linux (49)
- Music (32)
- Photo (65)
- Plant (33)
- Plastic Model (58)
- Trekking (43)
- WordPress (35)
It's blog written about Trekking ,1/43 MiniCar , Plastic Model , Photo , Computing.
RSStwitterに自動で投稿していたのですが、2014年1月14日から投稿できなくなっていた。
いろいろググってみたらAPIの仕様が変わったみたいでした。
・呼び出すURLがhttp://からhttps://に変更された
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
//Twitterへの送信関数 function _tweet ($mess = null) { try { $o = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, OAUTH_TOKEN , OAUTH_TOKEN_SECRET); $req = $o->OAuthRequest( //以下に変更↓ "http://api.twitter.com/1.1/statuses/update.json", "https://api.twitter.com/1.1/statuses/update.json", "POST", array("status"=>$mess) ); } catch (Exception $e) { echo "Error occured!! This Script was terminated."; var_dump($e); exit; } } |