當前位置: 首頁>>代碼示例>>PHP>>正文


PHP TwitterAPIExchange::getTweets方法代碼示例

本文整理匯總了PHP中TwitterAPIExchange::getTweets方法的典型用法代碼示例。如果您正苦於以下問題:PHP TwitterAPIExchange::getTweets方法的具體用法?PHP TwitterAPIExchange::getTweets怎麽用?PHP TwitterAPIExchange::getTweets使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在TwitterAPIExchange的用法示例。


在下文中一共展示了TwitterAPIExchange::getTweets方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: array

	<div class="slide" id="twitter">
		<div class="container">
			<h2>King's Tweets</h2>
			<?php 
ini_set('display_errors', 1);
require_once 'TwitterAPIExchange.php';
/** Set access tokens here - see: https://dev.twitter.com/apps/ **/
$settings = array('oauth_access_token' => "16770784-7moHuZZOkEQJMaPmr3yJyUhEulyWAhXgi5hjQkzJf", 'oauth_access_token_secret' => "UVdsDQsoOuOHeLUttMwz2eqpN1OuDb6DJNzcrUCFFE", 'consumer_key' => "UpdvsamJgEibOmHXrY7FXQ", 'consumer_secret' => "6VnjiJKY4lU5PHmqMKqILvKzTgAdtaQWDqFeTYNRYU");
/** Perform a GET request and echo the response **/
/** Note: Set the GET field BEFORE calling buildOauth(); **/
$url = 'http://api.twitter.com/1.1/statuses/user_timeline.json';
$getfield = '?screen_name=kingjames&count=5';
$requestMethod = 'GET';
$twitter = new TwitterAPIExchange($settings);
$response = $twitter->setGetfield($getfield)->buildOauth($url, $requestMethod)->performRequest();
$tweets = $twitter->getTweets($response);
?>
			<div id="wrapper-content" class="container">

				<div id="horizontal-example" class="row clearfix">
					<div class="grid_12 last">
							<?php 
if (count($tweets) > 0) {
    ?>
											<ul class="twitter-timeline twitter-timeline-vertical clearfix">
							<?php 
    $count = 0;
    foreach ($tweets as $tweet) {
        $count++;
        if (isset($tweet->retweeted_status)) {
            ?>
開發者ID:nonconforme,項目名稱:SocialAggregator,代碼行數:31,代碼來源:index.php


注:本文中的TwitterAPIExchange::getTweets方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。