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

PHP Twitter Search API

페이지 정보

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

본문

PHP Twitter Search API

I've implemented the twitter search API in a PHP class just for fun. It implements the entire search API as of February 25, 2009. I've only tested this with PHP 5.2.6 but I am fairly confident that most installations of PHP5 should work just fine. If you try it with PHP4 and it works (or if you have to jigger it) let me know.

You can get the source code at http://greenservr.com/projects/twittersearch/TwitterSearch.phps

Here are a couple examples (after including the class):

This example makes use of method chaining to create a "sentence". Chaining isn't a requirement but I think it works here. What this example does is search for tweets from the user "ryanfaerman" with the hashtag "#flsccc".

$search = new TwitterSearch();
$search->user_agent = 'phptwittersearch:ryan.faerman@gmail.com';

$results = $search->from('ryanfaerman')->with('flsccc')->results();
The user agent is optional, but is recommended. This way the folks over at Twitter know who is hitting their server. I'll be leaving it out in other examples for clarity.

If you want to put in the query during instantiation, you can do that too. Anything that you'd use on search.twitter.com can be passed as the argument. This example searches all twitter for any tweets that mention the word "monkey".

$search = new TwitterSearch('monkey');
$results = $search->results();
Each time you add another search term, it is appended to the query you are building. Once you get the results, the query is cleared.

This example searches for the last 50 tweets from the user ?darthvader? where he mentions ?storm trooper?.

$search->from('darthvader');
$search->contains('storm trooper');
$results = $search->rpp(50)->results();
This example searches for any tweets within a 25 mile radius of the provided coordinates.

$results = $search->geocode(40.757929, -73.985506, 25)->results();
There are quite a few more search operators which are clear from the source code, so I encourage you to take a look. Lastly, there is the trends function. Calling this method returns the top ten queries that are currently trending on Twitter.

$trends = $search->trends();
If you end up using this in a project of yours, I'd really enjoy hearing about it.


URL : http://ryanfaerman.com/twittersearch/
첨부 파일
파일 종류: php TwitterSearch.php (10.2K, 63 views)

댓글목록

등록된 댓글이 없습니다.

Total 32건 1 페이지
Ajax & Issue 목록
번호 제목 글쓴이 조회 날짜
32 MintState 9233 02-02
31 MintState 9720 05-30
30 MintState 11396 03-04
29 MintState 12604 03-21
28 MintState 12414 11-25
27 MintState 17207 09-19
26 MintState 13782 06-23
25 MintState 11150 06-01
24 MintState 15885 06-01
열람중 MintState 11900 06-01
22 MintState 13587 04-18
21 MintState 12118 02-21
20 MintState 16430 07-13
19 MintState 16120 07-02
18 MintState 12975 01-19
17 MintState 17751 01-19
16 MintState 16195 08-27
15 MintState 15668 08-27
14 MintState 16080 07-07
13
Google Maps API 댓글+ 1
MintState 21803 03-18
게시물 검색
모바일 버전으로 보기
CopyRight ©2004 - 2025, Go3.co.kr MintState. ™