This program should prompt the user to update their stream; instead it does nothing but print "splendid!" on the console. What am I missing here? The documentation seems to suggest that this is all it takes. (I've hidden my API key with Xs; normally I'd use a real key.)
<html><head></head>
<body>
<script src="http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php" type="text/javascript"></script>
<script>
FB_RequireFeatures(["Connect"], function(){
FB.init("XXXXXXXXXXXXXXXXXXXXXXXXXXXX", "xd_receiver.htm");
FB.ensureInit(function() {
alert(FB.Connect.streamPublish("", null, null, null, null, function(){
console.info("called back");
}));
console.info("wonderful!");
});
});
</script>
</body>
</html>