I've been looking at the Google Buzz API just recently, and thought it would be similar to the Twitter API to query - and the documentation pretty much reads like that. It would appear not though, and I'm scratching my head trying to figure out what I'm missing...
As an example, if you throw the following URL at a browser;
http://www.googleapis.com/buzz/v1/people/jonathan.beckett/@groups/@followers?alt=json
It returns the expected data. If however you run some fairly straightforward JQuery code at the same URL (as listed below), it returns null.
<html>
<head>
<title>Buzz Wall of Awesome</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" language="javascript"></script>
</head>
<body>
<div>Buzz ID <input type="text" id="buzz_id" value="jonathan.beckett" /> <button id="following_button">Following</button> <button id="followers_button">Followers</button></div>
<div id="results"></div>
<script language="Javascript">
$(document).ready(function(){
var url = "http://www.googleapis.com/buzz/v1/people/jonathan.beckett/@groups/@followers?alt=json";
$.getJSON(url,{}, function(data) { alert(data); });
});
</script>
</body>
</html>
Any ideas why ?