What is the difference between the long and short access tokens?
for example i am trying to get mutual friends using the following:
https://graph.facebook.com/$uid1/mutualfriends/$uid2?access_token=$token
and getting the access toke using the following function:
function getAccessToken(){
$url ='https://graph.facebook.com/oauth/access_token?client_id='.FB_APP_ID.'&client_secret='.FB_SECRET_ID.'&grant_type=client_credentials';
$info = file_get_contents($url);
$clean = clean_up_data($info);
return($clean);
}
but this does not work as the token is not valid, although if i used the access token found in Graph API Explorer it works but this token changes to much.
So how would you go about getting the valid token to allow access to mutual friends?
