tags:

views:

116

answers:

3

Hi ,

I am trying to create a feed on a site which displays all the tweets which are about me so say if some one says " @oli hello how are you?" I would like it to display seperatley from my twitter feed.

is this possible if so could you try and explain how to do it using php

and also if u could provide a link that would be great

Thanks

:)

+1  A: 

Use the statuses/mentions method.

David Dorward
Thanks David for your help.
Oliver Bayes-Shelton
+2  A: 

5 seconds using google -> http://apiwiki.twitter.com/Libraries#PHP

Tim
A: 

If needed, you could also use the search API, for example http://search.twitter.com/search.json?q=to%3Aoli

This would allow you to get results without authentication, but search's API has its own limitations. See http://apiwiki.twitter.com/Twitter-Search-API-Method%3A-search

Adam V.