« MP3 ringtones on your iPhone | Main | PDF on iPhone How-To »

July 30, 2008

'Get Twitter RSS with authentication' script for Mac OS RSS screen saver

<?
$url = "http://twitter.com/statuses/friends_timeline.rss";
$ch = curl_init();    
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
curl_setopt($ch, CURLOPT_URL, $url); 
curl_setopt($ch, CURLOPT_USERPWD, "your@email.here:password"); 
$result = curl_exec($ch); 
curl_close($ch); 
echo $result; 
?>

Tags: Syndication

Posted by pj at July 30, 2008 03:31 PM

Comments