Facebook SDK , How To Put Name of user in wall post?
Posted
by
Viola Courtney
on Stack Overflow
See other posts from Stack Overflow
or by Viola Courtney
Published on 2012-06-27T21:12:53Z
Indexed on
2012/06/27
21:15 UTC
Read the original article
Hit count: 263
I got this code and working fine
$access_token = $facebook->getAccessToken();
$vars = array(
'caption' => 'Caption message',
'message' => 'I need help',
'name' => 'I need Help',
'link' => 'http://www.google.com/',
'description' => 'description',
'picture' => ''
);
But I want to replace the message or the name in to like : " (name of user) Need Help...
© Stack Overflow or respective owner