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.

Can anyone help me to send message to facebook friends using graph api.

I tried

$response = $facebook->call_api("/me/feed", "post", "to=john","message=You have a Test message");

It's not working. I have the accesstoken of the user in my hand.only I am confused on sending process.

share|improve this question
Do you have access token to john too ? The application need to have sufficient permission to be able to post anything to john's feed – Ashish Rajan Oct 3 '10 at 18:41
1  
We are able to send answer by javascript. Check my answer. – Somnath Muluk Feb 29 '12 at 17:39

10 Answers

You can't send messages using a Facebook application. You used to be able to do that, but the (predictable?) colossal amount of abuse led to the revocation of this ability.

Provided Alice, your user, has given you the necessary extended permissions, you have the following options:

  • Post to Alice's wall on her behalf
  • Send email to Alice
  • Create events on behalf of Alice
    • invite Bob (not your user) to said events
  • Issue a request/invitation on behalf of Alice to Bob
  • Issue a request from the App to Alice
share|improve this answer
1  
Note that you can't send email to Bob from Alice (a message from Alice to Bob appears to be the OP's goal) – Michael Mior Apr 24 '12 at 17:31
Well... one could play with the to field ;) But no, you can't. Hence it not being listed. – Júlio Santos Apr 24 '12 at 18:53
Here's the link saying you can't get friends' email addresses: developers.facebook.com/docs/reference/login/email-permissions – John Erck 20 hours ago

You could open the Send Dialog in a popup.

 $parameters = array(
    'app_id' => $facebook->getAppId(),
    'to' => $facebookUserId,
    'link' => 'http://google.nl/',
    'redirect_uri' => 'http://my.app.url/callback'
 );
 $url = 'http://www.facebook.com/dialog/send?'.http_build_query($parameters);
 echo '<script type="text/javascript">window.open('.json_encode($url).', ...

For detailed options see: https://developers.facebook.com/docs/reference/dialogs/send/

share|improve this answer
Thanks a lot bob. I was exactly looking for this. This even helps in pre-populating message fields so it's so easy to send an invitation link to my app using this dialog. – qasimzee Aug 9 '11 at 9:40
4  
Is there a way to bypass the send dialog popup and send the message directly via url? – CyberJunkie May 12 '12 at 19:04
$attachment =  array(

    'access_token' => $access_token,
    'message' => "$msg",
    'name' => "$name",
    'link' => "$link",
    'description' => "$desc",
);

facebook->api('/'.$uesr_id.'/feed', 'POST', $attachment);
share|improve this answer
3  
This will post message on $uesr_id's wall. – Somnath Muluk Feb 23 '12 at 12:43
@SomnathMuluk This does not work anymore cause it is deprecated! – Lomse Feb 20 at 11:28
@Lomse: Yes... It's deprecated on Feb 2013. – Somnath Muluk Feb 20 at 15:48

Technically you can do feed or cross feed post with privacy settings that allows only the feed owner to see the post but its not really sending a message to a person.

share|improve this answer

fire this event for sending message(initialization of facebook object should be done before).

to:user id of facebook

function facebook_send_message(to) {
    FB.ui({
        app_id:'xxxxxxxx',
        method: 'send',
        name: "sdfds jj jjjsdj j j ",
        link: 'https://apps.facebook.com/xxxxxxxaxsa',
        to:to,
        description:'sdf sdf sfddsfdd s d  fsf s '

    });
}

Properties

  • app_id
    Your application's identifier. Required, but automatically specified by most SDKs.

  • redirect_uri
    The URL to redirect to after the user clicks the Send or Cancel buttons on the dialog. Required, but automatically specified by most SDKs.

  • display
    The display mode in which to render the dialog. This is automatically specified by most SDKs.

  • to
    A user ID or username to which to send the message. Once the dialog comes up, the user can specify additional users, Facebook groups, and email addresses to which to send the message. Sending content to a Facebook group will post it to the group's wall.

  • link
    (required) The link to send in the message.

  • picture
    By default a picture will be taken from the link specified. The URL of a picture to include in the message. The picture will be shown next to the link.

  • name By default a title will be taken from the link specified. The name of the link, i.e. the text to display that the user will click on.

  • description
    By default a description will be taken from the link specified. Descriptive text to show below the link.

share|improve this answer
does this still work? – CyberJunkie May 12 '12 at 19:05
1  
Yes it works... – Somnath Muluk May 14 '12 at 4:55
@SomnathMuluk I saw you answer posted a few times; can you confirm that you can only pre-popluate 1 friend for the 'to' field? In my app I want to send a message to multiple friends w/o having to type in there names, this is not possible correct? Thanks. – RyanG Jun 8 '12 at 19:06
Multiple friends message sending was working previously. But now it is not working. It's bug reported to facebook. See developers.facebook.com/bugs/314701778595814 – Somnath Muluk Jun 9 '12 at 7:21
@Somnath: is there a way to populate the Message in the popup with custom messages? – VishwaKumar Aug 22 '12 at 10:07
show 2 more comments
You can use
HTTP POST with
PATH
https://graph.facebook.com/friend_facebook_id/feed
PARAMETER
MESSAGE = your message
ACCESS_TOKEN = your oauth2 access token
share|improve this answer

I saw this post and noticed it was not right. Using the javascriot api you can post to a friend's feed like so: In this example "friendID" is the FB user ID of the friend. This api call requires the "publish_stream" permission.

FB.api('/'+friendID+'/feed', 'post', 
            {
                method: 'feed',
                message: messageText,
                name: 'write a title here',
                caption: 'Put a caption here.',
                description: 'Put your description here.',
                link: 'http://stackoverflow.com/questions/2943297/how-send-message-facebook-friend-through-graph-api-using-accessstoken',
                picture: 'link to the preview thumbnail',                   
            },
             function(response) {
              if (!response || response.error) {
                //alert('Error occured');
              } else {
                //alert('Post ID: ' + response.id);
              }
        });

So this does it with the javasfcript SDK- the PHP method must be similar.

share|improve this answer

Instead of using the below code

    [facebook dialog:@"feed"
     andParams:params 
     andDelegate:self]; 

Use the following solution

[facebook requestWithGraphPath:@"me/feed"
   andParams:params
   andHttpMethod:@"POST"
   andDelegate:self];
share|improve this answer

You can send to their facebook email. Facebook email is consisting profile nickname+'@facebook.com'. The email will goes to their facebook inbox message. Note that facebook email does not accept spoofing email. You will need whitelabel domain or use SendGrid.

share|improve this answer

You will need to integrate xmpp chat to reply a message and to write a new message.

share|improve this answer

protected by Marc Gravell Jan 9 '11 at 9:58

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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