I am trying to post a message on my friend’s timeline. I am using the following code. I have the proper access token too but still I can’t post. Can you pleases have a look here is the code.
<script>
$(document).ready(function() {
var token = "<?php echo $_SESSION['access_token'];?>";
alert()token;
$.post(
"https://graph.facebook.com/<?php echo $sqlr['regidfriendsid']; ?>/feed",
{
picture: "http://my.com/hi.jpg",
link: "https://www.my.com/login.php?ref=owall",
privacy: '{value: "EVERYONE"}',
access_token: token,
name: 'Facebook Dialogs',
caption: 'Reference Documentation',
message: " Click to see more? "
}
);
});
</script>
I dont know why I am getting this error .
{
"error": {
"message": "An access token is required to request this resource.",
"type": "OAuthException",
"code": 104
}
}
access_tokenPlease validate your access token here: Debugger – Shadowfax Jan 17 at 13:02"<?php echo $_SESSION['access_token'];?>";and it gives me the value . Is there any alternative to this ? – Adi Mathur Jan 17 at 13:11