Grab your Google Buzz Status

Here’s how you can get your google buzz status with php. Just put your google username at the right place and do whatever you want. We have used simpleXML to parse the google’s RSS feed for every user. 🙂 [php] <?php $user = "<username>"; $url = "http://buzz.googleapis.com/feeds/".$user."/public/posted"; $data = file_get_contents($url); $xml = new SimpleXMLElement($data); $status … Continue reading Grab your Google Buzz Status