I'm using FB.ui to post to a Facebook user wall. However, I am uncertain on which parameters to use to post to a Page or Application wall. Any links?

I am trying to post to the Page wall as that page, not as the user's account.

Jack

Code to post to user account:

 FB.ui(
   {
     method: 'feed',
     name: name,
     link: link,
     picture: picture,
     caption: caption,
     description: redemption,
     message: message
   },
   function (response) {
     if (response && response.post_id) {
       alert(response.post_id);
     } else {

     }
   }
 );
link|improve this question

feedback

5 Answers

up vote 2 down vote accepted

Got it:

you have to set the to and from values:

FB.ui(    {
  method: 'feed',
  name: name,
  link: link,
  picture: picture,
  caption: caption,
  description: redemption,
  message: message,
  to: page_id,
  from: page_id    
 },    
function (response) {
    if (response && response.post_id) {
      alert(response.post_id);
    } else {

    }    
   }  
);
link|improve this answer
This code does not work. (Unless the user has liked the page first) also the feed from dialog is a special case that only works for page administrators. developers.facebook.com/docs/reference/dialogs/feed – Plastic Sturgeon Jun 13 '11 at 19:33
This doesn't work for me, either - I set the from and to to be the page's ID - I'm impersonating that page on Facebook but get the error: – Ian Grainger Sep 22 '11 at 10:05
feedback

Sorry, this is an old question, but I thought this might be helpful for people who find it via google. http://fbmhell.com/2011/07/facebook-share-popup-iframe-tabs-jquery/

link|improve this answer
feedback

I used javascript SDK to post on user's wall the code is

function graphStreamPublish(){
           var body = document.getElementById("txtTextToPublish").value;
            FB.api('/me/feed', 'post', { message: body }, function(response) {
                if (!response || response.error) {
                     alert('Error occured');
                } else {
                     alert('Post ID: ' + response.id);
                }
           });
     }

When I go through the Graph API Page I think if you change '/me/feed/' to 'pageId/feed' then it may post the message in that page. I am not sure.. Just a suggestion ..try it..

Happy coding.. ;-)

link|improve this answer
1  
Yeah, I tried that. I was looking for the FB.ui popup, though. :-) – jchapa Jan 11 '11 at 0:50
If you check out the link I posted above, it shows you how to get the popup using jquery+FB.ui. – snipe Sep 21 '11 at 8:07
feedback

To share on a friend's wall, as of February 2012:

FB.ui({
    method: 'stream.publish',
    app_id: appId,
    display: 'iframe',
    name: name,
    link: link,
    picture: picture,
    caption: caption,
    description: description,
    target_id: friendIds
});
link|improve this answer
stream.publish going to be deprecated, isn't it? – superscral May 23 at 14:11
feedback

Just remember target_id needs to be parsed into an int. The response["to"] comes back as a string.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.