Is there a way to check if a twitter username exists? Without being authenticated with OAuth or the twitter basic authentication?
|
|
According to the api docs you can pass an email address to the user/ show method, I would assume that if a user didn't exist you'd get back a 404, which should allow you to determine whether or not the user exists. eg: http://twitter.com/users/show.xml?email=t...@example.com result if not exist :
|
|||
|
You can also use the API with username : eg : http://api.twitter.com/1/users/show.xml?screen_name=tarnfeld Will give you :
Or if not exist :
|
|||
|
|
|
Here is how it works on PHP :
|
|||
|
|
|
This worked for me, close to what sferik has posted.
|
||||
|
|
|
You can try to grab the Edit:As @Pablo Fernandez mentioned in a comment, it will be better (faster, more reliable) to check the response header, which will be "404 not-found" if the user doesn't exist. |
|||||||||||||||
|
|
Using Ruby, you could install the twitter gem and then define the following method:
Then, simply pass in a Twitter user name or id to your method, like so:
|
||||
|
|
