プロジェクトに Twitter ログインを実装したいと考えています。私のプロジェクトは CodeIgniter でコーディングされています。これを実装するための段階的なプロセスを教えてもらえますか?
質問する
7018 次
3 に答える
3
次のリンクを参照してください-integrating -twitter-api-with-codeigniterand
于 2012-11-06T06:44:49.387 に答える
2
//use Codeigniter-TwitterOAuth
//https://github.com/MunGell/Codeigniter-TwitterOAuth
//download url: https://github.com/MunGell/Codeigniter-TwitterOAuth/archive/master.zip
//Usage
// There are two ways to load library to Codeigniter. Automatically within ./config/autoload.php or directly in your controller by adding this line:
$this->load->library('twitteroauth');
//Create an instance:
$connection = $this->twitteroauth->create($consumer, $consumer_secret, $access_token, $access_token_secret);
//Verify your authentication details:
$content = $connection->get('account/verify_credentials');
//Send a message:
$data = array(
'status' => $message,
'in_reply_to_status_id' => $in_reply_to
);
$result = $connection->post('statuses/update', $data);
于 2014-03-23T09:21:11.747 に答える
0
こんにちは、philsturgeon oauthによるこの oauth ライブラリを試してください
于 2012-11-06T06:26:59.147 に答える