Oo[ワオ] 首の肌着
$ php --version PHP 5.2.11 (cli) (built: Sep 21 2009 14:49:09) Copyright (c) 1997-2009 The PHP Group Zend Engine v2.2.0, Copyright (c) 1998-2009 Zend Technologies |
$ php -i | grep cURL cURL support => enabled cURL Information => libcurl/7.15.5 OpenSSL/0.9.8b zlib/1.2.3 libidn/0.6.5 |
<?php // ライブラリインクルード require_once("twitteroauth.php"); // キー値の設定 ※手順(4)で控えた値を書く $consumer_key = "内緒♪"; $consumer_secret = "内緒♪"; $access_token = "内緒♪"; $access_token_secret = "内緒♪"; // OAuthオブジェクト生成 (1行で) $to = new TwitterOAuth($consumer_key,$consumer_secret,$access_token,$access_token_secret); // メッセージ設定 $message = "にゃーにゃーにゃー " . date("H時i分s秒", time()); // ツイート実行 (1行で) $to->OAuthRequest("https://twitter.com/statuses/update.xml","POST",array("status"=>"' . $message . '")); ?> |
$ php nyabot.php |