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 want to send message to facebook friend's inbox/message folder from my application using either javascript or php sdk How can I do that?

Before, this we used

    FB.api('me/feed', 'post' ......

method to post in friends wall from my application but now that method is removed from FEB 2013, I also tried sending mail at

    FACEBOOK_FRIENDS_USERNAME@facebook.com

but this method also didn't work all the time some time message was going to others folder in messages but not all the time, Can anyone tell me why this is happening? I rechecked my code, the username was correct to where I was sending the mail.

I have also tried

    FB.ui({method : 'send', .....

method but it opens one dialog for sending message and then we have to select multiple friends I don't want that, I want to send message to user's facebook friends directly from my application.

If there is some other way to implement this please help me?

share|improve this question

1 Answer

You can't send message to a User's friend you can only read User's messages throgh the application ,check this link. But if you still need the functionality to either post on the friend's wall or send message to a User's friend you can use Facebook JavaScript SDK's share.stream method

<script>
  var share = {
      method: 'stream.share',
      u: 'http://www.fbrell.com/'
  };

 FB.ui(share, Log.info.bind('stream.share callback'));
</script>

or you can utilize Send Dialog

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.