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.

The way I am currently posting to a Facebook Wall is

<?php
   $app_id = "XXXXXXXX";
   $canvas_page = "XXXXXXXX";
   $message = "My story";
   $feed_url = "http://www.facebook.com/dialog/feed?app_id="
                 . $app_id . "&redirect_uri=" .urlencode($canvas_page) . "&message=" . $message;

   if (empty($_REQUEST["post_id"])) {
     echo("<script> top.location.href='" . $feed_url . "'</script>");
  } else {
     echo ("Feed Post Id: " . $_REQUEST["post_id"]);
  }
?> 

But this way, it is publishing a message on the wall of the user from the site.
Actually, I want to post the result to the wall, not any messages.
How can I achieve this?

share|improve this question
That code looks correct for posting to the user's feed - what problem are you having with it? – Igy Aug 16 '12 at 17:23
I don't understand what you are trying to do either. What do you mean by message versus ???. Could you please update with a screenshot of what you have and what you desire? – phwd Aug 16 '12 at 20:55
like this [i.stack.imgur.com/b5I28.jpg] No message,post the result to the wall! – user1602773 Aug 17 '12 at 15:35

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.