Problem- 1
I want to post in user's wall but I'm getting sometimes: A user access token is required to request this resource.
Here is what I made:
$access_token = $facebook->getAccessToken();
$facebook->setAccessToken($access_token);
$params = array(
'access_token' => $access_token,
'link' => "http://www.facebook.com/PaginaRomanilor?sk=app_".APP_ID,
'message' => $caption." - Amuză-ți și tu prietenii cu aplicația întrebări pentru prieteni.",
'name' => $caption,
'description' => 'Răspuns: '.ucfirst($raspuns).'. '.$mesaj,
'caption' => 'TS',
'picture' => LINK."images/".$raspuns.".png",
'tags' => $friendpost['uid'],
'place' => 155021662189
);
if(!($sendMessage = $facebook->api('/me/feed/','post',$params))){
$errors= error_get_last();
echo "Facebook publish error: ".$errors['type'];
echo "<br />\n".$errors['message'];
}
When I personally use the app I don't get the error, only some users gets the error.
Problem-2
In the link, I'm providing the link to my page. The caption is ignored and is replaced by Page: 7,726 like this.
But I want to give the customized caption in that post.
UPDATE:
The user access token error was not from this part of code, it was from selecting friends database, so i resolved there, the problem i had now whi is my custom caption disabled and replaced with the likes of the page from link.