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.

I have a page tab and want to allow users to share some content in their wall, friends wall or by a private message to a friend.

I'm currently using:

function postToFeed() {

            // calling the API ...
            var obj = {
              method: 'feed',
              link: 'page url',
              picture: 'image url',
              name: 'Facebook Dialogs',
              caption: 'Reference Documentation',
              description: 'Using Dialogs to interact with users.'
            };

            function callback(response) {
              document.getElementById('msg').innerHTML = "Post ID: " + response['post_id'];
            }

            FB.ui(obj, callback);
        }

This works fine but only allows to share in my wall.

So the question is... Is there any dialog or way to allow the three features on the same dialog?

I saw 'send' dialog to send a private message but couldn't find the share on friend wall dialog.

Ideally I wanted to have only a share button and allow the three options after clicking.

Any idea?

Thanks

share|improve this question

1 Answer

You can use the Feed dialog to share on a friend’s wall, if you provide the to parameter.

To get a userid to send “to” before opening the dialog, you could implement your own friend selector in the way described here: https://developers.facebook.com/docs/guides/games/custom-muti-friend-selector/

share|improve this answer

Your Answer

 
discard

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

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