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/notification to friends with customized subject with a link in it via graph api.The link should redirect the friend to a particular website not to the application used.Please help me.If the information I provided is insufficient please let me know.Thanks.

share|improve this question

1 Answer

up vote 0 down vote accepted

Are you using Javascript or PHP to interact with facebook? Either way you are going to want to use the 'link' parameter in the post. Here is a php example which also posts a picture. If you need a Javascript example let me know. Hope this helps!

$attachment = array(
'message' => $customMessage,
'link' => $MY_LINK_HERE,
'source' => $source,
'name' => $blogTitle,
'picture' => $picture,
'caption' => 'caption of the link',
'description' => ''
);
$result = $facebook->api('/'.$uid.'/feed?access_token='.$access, 'post', $attachment);
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.