Skip to content

Instantly share code, notes, and snippets.

@dewski
Created September 3, 2009 05:12
Show Gist options
  • Select an option

  • Save dewski/180137 to your computer and use it in GitHub Desktop.

Select an option

Save dewski/180137 to your computer and use it in GitHub Desktop.
<?php
function twitauth($username, $password){
$xml = @simplexml_load_file("http://". $username .":". $password ."@twitter.com/statuses/friends_timeline.xml");
return ($xml->error != "Could not authenticate you.") ? true : false;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment