I honestly don't know much about programing or scripting and had hired someone to create a facebook feed in flash.
It all worked fine until recently when I updated the access token. Now sometimes on my page when I click the like button it will not re-direct to my facebook page. It just goes to an invalid page.
But if you click on the other posts and click on the first one again it will work.
I dont think its the token that is the issue as I have been researching and followed the correct process in obtaining a new token.
Website: www.sharara.com.au In the Social Network link
this is the code that I currently have.
<?php
date_default_timezone_set('UTC');
$id = '254546089253';//page ID
$token = 'AAAFVF8wKurABAPU2GRFrZBoJ1XnVHLJ5gZBvMXVA9vxbOsnU2FmP0FC7TyPip8qEhqxvBNDM3KsTelYIngpaVyEuaGL95fqBW2Ico7igZDZD';//60 day user access token..
$limit = 5; //only return 5 most recent feeds.
$datestr = 'F%20j';
$url = "https://graph.facebook.com/{$id}/feed?&date_format={$datestr}&limit={$limit}&access_token={$token}";
$feed = file_get_contents($url);
//return thejson to flash.
echo $feed;
?>