Re: [twitter-dev] How to validate twitter username in PHP?

2010-08-31 Thread Matt Harris
One way you could do this is to call /users/show. If the user exists their details will be returned, if not, you will get a 404 or 403 error (Suspended users are returned as a 403 error). You can find out more about /users/show on our developer resources site: http://dev.twitter.com/doc/get/use

Re: [twitter-dev] How to validate twitter username in PHP?

2010-08-28 Thread Sujit Kumar Garikipati
You can refer to this library, written by @abraham to learn using OAuth authorization in PHP. http://twitteroauth.labs.poseurtech.com/connect.php On Sat, Aug 28, 2010 at 7:15 AM, computerzworld wrote: > Hi, I have created application that fetches users' tweets from his/her > user account. I wan