Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Tried sth like below and nth happens..

<script src="http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php" type="text/javascript"></script>
<script type="text/javascript">   

FB_RequireFeatures(["XFBML"], function(){ 
    FB.Facebook.init("<?=$apiKey?>", "channel/xd_receiver.htm"); 
    var api = FB.Facebook.apiClient;

Facebook.streamPublish();   
}); 
</script>
share|improve this question

1 Answer

Facebook.streamPublish();

String can be inputed as parameters. The string being the message the user enters for the post at the time of publication.

But there are also several other parameters that can be inputed, I would suggest reading more here.

share|improve this answer
Thanks for the answer. I have coded as following and nth happens, wht is probably wrong for this? <script src="static.ak.connect.facebook.com/js/api_lib/v0.4/…; type="text/javascript"></script> <script type="text/javascript"> FB_RequireFeatures(["XFBML"], function(){ FB.Facebook.init("<?=$apiKey?>", "channel/xd_receiver.htm"); var api = FB.Facebook.apiClient; Facebook.streamPublish(); }); – peter Aug 13 '09 at 15:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.