NHANWEB

Cách sử dụng Twitter API V1.1

Ngày 5/3/2013, Twitter gỡ bỏ API của mình và thay vào một phiên bản mới: Twitter API V1.1. Điều đó cũng đồng nghĩa với việc Twitter sẽ cho ngừng các API cũ và muốn sử dụng tiếp bạn phải xây dựng trên nền API V1.1 mà Twitter mới cung cấp. Đó là chuyện của năm ngoái, trong bài viết này NhanWeb sẽ hướng dẫn bạn khai thác API V1.1 của Twitter để phục vụ cho các mục đích của mình. Ví dụ như lập trình để hiển thị danh sách các tweet gần nhất chẳng hạn.

Tạo một ứng dụng trên Dev của Twitter

Cũng như các API của FaceBook, API của Twitter cũng đòi hỏi bạn cần phải có quyền sử dụng thông qua việc kiểm tra authenticated. Bạn cũng cần có một API key và một API secret để kết nối ứng dụng của mình vào Twitter và lấy dữ liệu của nó.

Điều này được thực hiện khá đơn giản bằng việc đăng nhập và tạo ra một ứng dụng từ tài khoản Twitter của bạn tại đây.

Tập Application Twitter

Khi đã tạo xong app, bạn sẽ được cung cấp API key và một API secret để có thể kết nối và lấy dữ liệu từ Twitter. Như thế này:

API key và API secret

Download Twitter OAUTH PHP Class

Giờ chúng ta đã có quyền truy cập, việc tiếp theo là tương tác và làm việc với API. Thật may là Twitter cung cấp cho chúng ta những công cụ đã được lập trinh sẵn khiến cho việc kết nối và làm việc với API trở nên dễ dàng hơn rất nhiều. Bạn có thể dễ dàng lựa chọn những công cụ và mã lập trình được Twitter cung cấp sẵn cho bạn trong thư viện của mình. Hãy lựa chọn ngôn ngữ lập trình của bạn và download về. Ngoài ra, nếu bạn nào yêu và làm việc với WordPress, các bạn có thể download bộ Twitteroauth dành cho WordPress về và sử dụng.

Latest Tweets với API

Bạn là dân lập trình nên mình sẽ không dài dòng nữa, kiến thức và các ví dụ đã được Twitter cung cấp sẵn ở Document rồi. Bạn chỉ việc đọc và làm theo nhé. Sau đây là một đoạn mã mà có thể nhiều bạn sẽ cần khi mới tiếp cận với API V1.1 của Twitter.

[code language=”php”] $transName = ‘list_tweets’;
$cacheTime = 10;

if(false === ($twitterData = get_transient($transName) ) ){
// require the twitter auth class
require_once ‘twitteroauth/twitteroauth.php’;
$twitterConnection = new TwitterOAuth(
‘xxxxxxxxxxxxxxxxxxxxxx’, // Consumer Key
‘xxxxxxxxxxxxxxxxxxxxxx’, // Consumer secret
‘xxxxxxxxxxxxxxxxxxxxxx’, // Access token
‘xxxxxxxxxxxxxxxxxxxxxx’ // Access token secret
);

$twitterData = $twitterConnection->get(
‘statuses/user_timeline’,
array(
‘screen_name’ => $this->twitter_username,
‘count’ => $this->twitter_postcount,
‘exclude_replies’ => false
)
);

if($twitterConnection->http_code != 200)
{
$twitterData = get_transient($transName);
}

// Save our new transient.
set_transient($transName, $twitterData, 60 * $cacheTime);
}
[/code]

Phần code này khá giống với khi làm việc với phiên bản API cũ. Chúng ta bắt đầu bằng việc kiểm tra sơ qua xem có dữ liệu trong bộ nhớ cache hay không. Nếu không có dữ liệu, chúng ta sẽ sử dụng API để lấy dữ liệu về.

Để sử dụng API, việc đầu tiên là xác thực yêu cầu thông qua class TwitterOauth. Chúng ta cần phải thông qua việc xác thực mới có thể kết nối với dữ liệu của Twitter. Những người lập trình đã tạo ra class này với 4 thông số quan trọng mà bạn cần cung cấp để kết nối:

[code language=”php”] require_once ‘twitteroauth/twitteroauth.php’;
$twitterConnection = new TwitterOAuth(
‘xxxxxxxxxxxxxxxxxxxxxx’, // Consumer Key
‘xxxxxxxxxxxxxxxxxxxxxx’, // Consumer secret
‘xxxxxxxxxxxxxxxxxxxxxx’, // Access token
‘xxxxxxxxxxxxxxxxxxxxxx’ // Access token secret
);
[/code]

Tới đây, bạn có thể sử dụng đối tượng $twitterConnection để gọi API sử dụng phương thức get() để lấy dữ liệu được rồi. Phương thức get() sử dụng 2 tham số đầu vào: đầu tiên là dữ liệu mà bạn muốn lấy, thứ hai là các biến mà bạn sẽ truyền vào API. Ví dụ:

[code language=”php”] $twitterData = $twitterConnection->get(
‘statuses/user_timeline’,
array(
‘screen_name’ => $this->twitter_username,
‘count’ => $this->twitter_postcount,
‘exclude_replies’ => false
)
);

foreach($twitterData as $tweets)
{
// Display the tweets
}
[/code]

Như vậy là đã xong, bạn có thể lấy được dữ liệu từ Twitter, hãy đọc thêm tài liệu để lấy những dữ liệu khác nếu bạn muốn.

Latest Tweets Widget

Danh cho bạn nào làm với WordPress mà hay … làm biếng ! Mình cung cấp cho các bạn đoạn mã full để tạo ra một Widget mà bạn có thể lấy dữ liệu từ Twitter đưa sang.

[code language=”php”] <?php
/*
* Plugin Name: Paulund Display Latest Tweets
* Plugin URI: http://www.paulund.co.uk
* Description: A widget that displays your latest tweets
* Version: 1.0
* Author: Paul Underwood
* Author URI: http://www.paulund.co.uk
* License: GPL2

Copyright 2012 Paul Underwood

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License,
version 2, as published by the Free Software Foundation.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
*/

/**
* Register the Widget
*/
add_action( ‘widgets_init’, create_function( ”, ‘register_widget("pu_tweet_widget");’ ) );

/**
* Create the widget class and extend from the WP_Widget
*/
class pu_tweet_widget extends WP_Widget {

private $twitter_title = "My Tweets";
private $twitter_username = "paulund_";
private $twitter_postcount = "10";
private $twitter_follow_text = "Follow Me On Twitter";

/**
* Register widget with WordPress.
*/
public function __construct() {

parent::__construct(
‘pu_tweet_widget’, // Base ID
‘Paulund Twitter Widget’, // Name
array(
‘classname’ => ‘pu_tweet_widget’,
‘description’ => __(‘A widget that displays your latest tweets.’, ‘framework’)
)
);

// Load JavaScript and stylesheets
$this->register_scripts_and_styles();

} // end constructor

/**
* Registers and enqueues stylesheets for the administration panel and the
* public facing site.
*/
public function register_scripts_and_styles() {

} // end register_scripts_and_styles

/**
* Front-end display of widget.
*
* @see WP_Widget::widget()
*
* @param array $args Widget arguments.
* @param array $instance Saved values from database.
*/
public function widget( $args, $instance ) {
extract( $args );

/* Our variables from the widget settings. */
$this->twitter_title = apply_filters(‘widget_title’, $instance[‘title’] );

$this->twitter_username = $instance[‘username’];
$this->twitter_postcount = $instance[‘postcount’];
$this->twitter_follow_text = $instance[‘tweettext’];

$transName = ‘list_tweets’;
$cacheTime = 20;

if(false === ($twitterData = get_transient($transName) ) ){
require_once ‘twitteroauth/twitteroauth.php’;
$twitterConnection = new TwitterOAuth(
‘xxxxxxxxxxxxxxxxxxxxxx’, // Consumer Key
‘xxxxxxxxxxxxxxxxxxxxxx’, // Consumer secret
‘xxxxxxxxxxxxxxxxxxxxxx’, // Access token
‘xxxxxxxxxxxxxxxxxxxxxx’ // Access token secret
);

$twitterData = $twitterConnection->get(
‘statuses/user_timeline’,
array(
‘screen_name’ => $this->twitter_username,
‘count’ => $this->twitter_postcount,
‘exclude_replies’ => false
)
);

if($twitterConnection->http_code != 200)
{
$twitterData = get_transient($transName);
}

// Save our new transient.
set_transient($transName, $twitterData, 60 * $cacheTime);
}

/* Before widget (defined by themes). */
echo $before_widget;
?>
<div class="twitter_box"><?php

/* Display the widget title if one was input (before and after defined by themes). */
if ( $this->twitter_title )
echo $before_title . $this->twitter_title . $after_title;

/* Display Latest Tweets */
?>
<a href="https://twitter.com/<?php echo $this->twitter_username; ?>"
class="twitter-follow-button"
data-show-count="true"
data-lang="en">Follow @<?php echo $this->twitter_username; ?></a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>

<?php
if(!empty($twitterData) || !isset($twitterData[‘error’])){
$i=0;
$hyperlinks = true;
$encode_utf8 = true;
$twitter_users = true;
$update = true;

echo ‘<ul class="twitter_update_list">’;

foreach($twitterData as $item){

$msg = $item->text;
$permalink = ‘http://twitter.com/#!/’. $this->twitter_username .’/status/’. $item->id_str;
if($encode_utf8) $msg = utf8_encode($msg);
$msg = $this->encode_tweet($msg);
$link = $permalink;

echo ‘<li class="twitter-item">’;

if ($hyperlinks) { $msg = $this->hyperlinks($msg); }
if ($twitter_users) { $msg = $this->twitter_users($msg); }

echo $msg;

if($update) {
$time = strtotime($item->created_at);

if ( ( abs( time() – $time) ) < 86400 )
$h_time = sprintf( __(‘%s ago’), human_time_diff( $time ) );
else
$h_time = date(__(‘Y/m/d’), $time);

echo sprintf( __(‘%s’, ‘twitter-for-wordpress’),’ <span class="twitter-timestamp"><abbr title="’ . date(__(‘Y/m/d H:i:s’), $time) . ‘">’ . $h_time . ‘</abbr></span>’ );
}

echo ‘</li>’;

$i++;
if ( $i >= $this->twitter_postcount ) break;
}

echo ‘</ul>’;

}
?>
</div>
<?php

/* After widget (defined by themes). */
echo $after_widget;
}

/**
* Sanitize widget form values as they are saved.
*
* @see WP_Widget::update()
*
* @param array $new_instance Values just sent to be saved.
* @param array $old_instance Previously saved values from database.
*
* @return array Updated safe values to be saved.
*/
function update( $new_instance, $old_instance ) {
$instance = $old_instance;

// Strip tags to remove HTML (important for text inputs)
foreach($new_instance as $k => $v){
$instance[$k] = strip_tags($v);
}

return $instance;
}

/**
* Create the form for the Widget admin
*
* @see WP_Widget::form()
*
* @param array $instance Previously saved values from database.
*/
function form( $instance ) {

/* Set up some default widget settings. */
$defaults = array(
‘title’ => $this->twitter_title,
‘username’ => $this->twitter_username,
‘postcount’ => $this->twitter_postcount,
‘tweettext’ => $this->twitter_follow_text,
);
$instance = wp_parse_args( (array) $instance, $defaults ); ?>

<!– Widget Title: Text Input –>
<p>
<label for="<?php echo $this->get_field_id( ‘title’ ); ?>"><?php _e(‘Title:’, ‘framework’) ?></label>
<input type="text" class="widefat" id="<?php echo $this->get_field_id( ‘title’ ); ?>" name="<?php echo $this->get_field_name( ‘title’ ); ?>" value="<?php echo $instance[‘title’]; ?>" />
</p>

<!– Username: Text Input –>
<p>
<label for="<?php echo $this->get_field_id( ‘username’ ); ?>"><?php _e(‘Twitter Username e.g. paulund_’, ‘framework’) ?></label>
<input type="text" class="widefat" id="<?php echo $this->get_field_id( ‘username’ ); ?>" name="<?php echo $this->get_field_name( ‘username’ ); ?>" value="<?php echo $instance[‘username’]; ?>" />
</p>

<!– Postcount: Text Input –>
<p>
<label for="<?php echo $this->get_field_id( ‘postcount’ ); ?>"><?php _e(‘Number of tweets (max 20)’, ‘framework’) ?></label>
<input type="text" class="widefat" id="<?php echo $this->get_field_id( ‘postcount’ ); ?>" name="<?php echo $this->get_field_name( ‘postcount’ ); ?>" value="<?php echo $instance[‘postcount’]; ?>" />
</p>

<!– Tweettext: Text Input –>
<p>
<label for="<?php echo $this->get_field_id( ‘tweettext’ ); ?>"><?php _e(‘Follow Text e.g. Follow me on Twitter’, ‘framework’) ?></label>
<input type="text" class="widefat" id="<?php echo $this->get_field_id( ‘tweettext’ ); ?>" name="<?php echo $this->get_field_name( ‘tweettext’ ); ?>" value="<?php echo $instance[‘tweettext’]; ?>" />
</p>

<?php
}

/**
* Find links and create the hyperlinks
*/
private function hyperlinks($text) {
$text = preg_replace(‘/\b([a-zA-Z]+:\/\/[\w_.\-]+\.[a-zA-Z]{2,6}[\/\w\-~.?=&%#+$*!]*)\b/i’,"<a href=\"$1\" class=\"twitter-link\">$1</a>", $text);
$text = preg_replace(‘/\b(?<!:\/\/)(www\.[\w_.\-]+\.[a-zA-Z]{2,6}[\/\w\-~.?=&%#+$*!]*)\b/i’,"<a href=\"http://$1\" class=\"twitter-link\">$1</a>", $text);

// match name@address
$text = preg_replace("/\b([a-zA-Z][a-zA-Z0-9\_\.\-]*[a-zA-Z]*\@[a-zA-Z][a-zA-Z0-9\_\.\-]*[a-zA-Z]{2,6})\b/i","<a href=\"mailto://$1\" class=\"twitter-link\">$1</a>", $text);
//mach #trendingtopics. Props to Michael Voigt
$text = preg_replace(‘/([\.|\,|\:|\¡|\¿|\>|\{|\(]?)#{1}(\w*)([\.|\,|\:|\!|\?|\>|\}|\)]?)\s/i’, "$1<a href=\"http://twitter.com/#search?q=$2\" class=\"twitter-link\">#$2</a>$3 ", $text);
return $text;
}

/**
* Find twitter usernames and link to them
*/
private function twitter_users($text) {
$text = preg_replace(‘/([\.|\,|\:|\¡|\¿|\>|\{|\(]?)@{1}(\w*)([\.|\,|\:|\!|\?|\>|\}|\)]?)\s/i’, "$1<a href=\"http://twitter.com/$2\" class=\"twitter-user\">@$2</a>$3 ", $text);
return $text;
}

/**
* Encode single quotes in your tweets
*/
private function encode_tweet($text) {
$text = mb_convert_encoding( $text, "HTML-ENTITIES", "UTF-8");
return $text;
}

}
?>
[/code]

Nhớ đọc kỹ nhé ! Có một vài đoạn bạn cần phải chỉnh sửa lại nữa đó :)

Nguồn: paulund.co.uk

Exit mobile version