YesYo.com MintState Forums
뒤로    Go3.co.kr MintState BBS > Tech > Ajax & Issue
검색
멤버이름    오토
비밀번호 
 

Using the Twitter Search API

페이지 정보

작성자 MintState 댓글 0건 조회 11,151회 작성일 11-06-01 15:46

본문

Using the Twitter Search API

Twitters new search feature is great for finding interesting people and topics to follow. So i wrote a script to get search results from twitter and display them on your site. This could be integrated into an existing application or used standalone to follow a particular topic or keyword on twitter,  Check the Demo.

The script uses PHP and CURL to get the twitter search results to display them on the page. for the demo i’ve set an if statement to display results for ‘papermashup.com’ if no get variable is present.

Here’s the code that allows us to enter our search term, on submit it posts a get variable to the URL which PHP then processes with CURL.

1<div id="search">
2<form action="" method="get">
3  <label>
4  Search twitter
5  <input type="text" name="q" id="searchbox" />
6  <input type="submit" name="submit" id="submit" value="Search" />
7  </label>
8</form>
9</div>


So we use PHP, CURL, and the SimpleXMLElement() class in PHP5 to parse the XML file. Once we have the xml data, regular expression is used to find the links in the xml content element, which is then saved in $description.

001// Date function (this could be included in a seperate script to keep it clean)
002function date_diff($d1, $d2){
003    $d1 = (is_string($d1) ? strtotime($d1) : $d1);
004    $d2 = (is_string($d2) ? strtotime($d2) : $d2);
005 
006    $diff_secs = abs($d1 - $d2);
007    $base_year = min(date("Y", $d1), date("Y", $d2));
008 
009    $diff = mktime(0, 0, $diff_secs, 1, 1, $base_year);
010    $diffArray = array(
011        "years" => date("Y", $diff) - $base_year,
012        "months_total" => (date("Y", $diff) - $base_year) * 12 + date("n", $diff) - 1,
013        "months" => date("n", $diff) - 1,
014        "days_total" => floor($diff_secs / (3600 * 24)),
015        "days" => date("j", $diff) - 1,
016        "hours_total" => floor($diff_secs / 3600),
017        "hours" => date("G", $diff),
018        "minutes_total" => floor($diff_secs / 60),
019        "minutes" => (int) date("i", $diff),
020        "seconds_total" => $diff_secs,
021        "seconds" => (int) date("s", $diff)
022    );
023    if($diffArray['days'] > 0){
024        if($diffArray['days'] == 1){
025            $days = '1 day';
026        }else{
027            $days = $diffArray['days'] . ' days';
028        }
029        return $days . ' and ' . $diffArray['hours'] . ' hours ago';
030    }else if($diffArray['hours'] > 0){
031        if($diffArray['hours'] == 1){
032            $hours = '1 hour';
033        }else{
034            $hours = $diffArray['hours'] . ' hours';
035        }
036        return $hours . ' and ' . $diffArray['minutes'] . ' minutes ago';
037    }else if($diffArray['minutes'] > 0){
038        if($diffArray['minutes'] == 1){
039            $minutes = '1 minute';
040        }else{
041            $minutes = $diffArray['minutes'] . ' minutes';
042        }
043        return $minutes . ' and ' . $diffArray['seconds'] . ' seconds ago';
044    }else{
045        return 'Less than a minute ago';
046    }
047}
048 
049// Work out the Date plus 8 hours
050// get the current timestamp into an array
051$timestamp = time();
052$date_time_array = getdate($timestamp);
053 
054$hours = $date_time_array['hours'];
055$minutes = $date_time_array['minutes'];
056$seconds = $date_time_array['seconds'];
057$month = $date_time_array['mon'];
058$day = $date_time_array['mday'];
059$year = $date_time_array['year'];
060 
061// use mktime to recreate the unix timestamp
062// adding 19 hours to $hours
063$timestamp = mktime($hours + 0,$minutes,$seconds,$month,$day,$year);
064$theDate = strftime('%Y-%m-%d %H:%M:%S',$timestamp);   
065 
066// END DATE FUNCTION
067 
068//Search API Script
069 
070$q=$_GET['q'];
071 
072if($_GET['q']==''){
073 
074$q = 'papermashup.com';}
075 
077 
078$tw = curl_init();
079 
080curl_setopt($tw, CURLOPT_URL, $search);
081curl_setopt($tw, CURLOPT_RETURNTRANSFER, TRUE);
082$twi = curl_exec($tw);
083$search_res = new SimpleXMLElement($twi);
084 
085echo "<h3>Twitter search results for '".$q."'</h3>";
086 
087## Echo the Search Data
088 
089foreach ($search_res->entry as $twit1) {
090 
091$description = $twit1->content;
092 
093$description = preg_replace("#(^|[\n ])@([^ \"\t\n\r<]*)#ise", "'\\1<a href=\"http://www.twitter.com/\\2\" >@\\2</a>'", $description);
094$description = preg_replace("#(^|[\n ])([\w]+?://[\w]+[^ \"\n\r\t<]*)#ise", "'\\1<a href=\"\\2\" >\\2</a>'", $description);
095$description = preg_replace("#(^|[\n ])((www|ftp)\.[^ \"\t\n\r<]*)#ise", "'\\1<a href=\"http://\\2\" >\\2</a>'", $description);
096 
097$retweet = strip_tags($description);
098 
099$date strtotime($twit1->updated);
100$dayMonth = date('d M', $date);
101$year = date('y', $date);
102$message = $row['content'];
103$datediff = date_diff($theDate, $date);
104 
105echo "<div class='user'><a href=\"",$twit1->author->uri,"\" target=\"_blank\"><img border=\"0\" width=\"48\" class=\"twitter_thumb\" src=\"",$twit1->link[1]->attributes()->href,"\" title=\"", $twit1->author->name, "\" /></a>\n";
106echo "<div class='text'>".$description."<div class='description'>From: ", $twit1->author->name," <a href='http://twitter.com/home?status=RT: ".$retweet."' target='_blank'>Retweet!</a></div><strong>".$datediff."</strong></div><div class='clear'></div></div>";
107 
108}
109 
110curl_close($tw);



URL : http://papermashup.com/using-the-twitter-search-api/
첨부 파일
파일 종류: php twitter-search.php (4.8K, 61 views)

댓글목록

등록된 댓글이 없습니다.

Total 32건 1 페이지
Ajax & Issue 목록
번호 제목 글쓴이 조회 날짜
32 MintState 9238 02-02
31 MintState 9722 05-30
30 MintState 11398 03-04
29 MintState 12607 03-21
28 MintState 12416 11-25
27 MintState 17216 09-19
26 MintState 13784 06-23
열람중 MintState 11152 06-01
24 MintState 15887 06-01
23 MintState 11902 06-01
22 MintState 13589 04-18
21 MintState 12120 02-21
20 MintState 16432 07-13
19 MintState 16122 07-02
18 MintState 12977 01-19
17 MintState 17753 01-19
16 MintState 16197 08-27
15 MintState 15671 08-27
14 MintState 16082 07-07
13
Google Maps API 댓글+ 1
MintState 21806 03-18
게시물 검색
모바일 버전으로 보기
CopyRight ©2004 - 2025, Go3.co.kr MintState. ™