I cannot exchange code for token using the following code:
extract($_GET);
$url=urlencode('http://'.DOMAIN.'/admin/');
$app_id=FB_APPID;
$fb_token=FB_TOKEN;
$secret=FB_SECRET;
if(SEND_NEWS_TO_FB){
if($code=='none'){
$state=rand(100000000,9999999999999999999);
$_SESSION['state']=$state;
$script="
<script type='text/javascript'>
var scope=encodeURI('publish_stream,user_status');
var app_id=$app_id;
var state=$state;
var url=$js_url;
window.location.href='https://www.facebook.com/dialog/oauth? client_id='+app_id+'&redirect_uri='+url+'&scope='+scope+'&state='+state;
</script>";
echo $script;
}
if($code!='none' && $_SESSION['state']==$state && $_SESSION['fb_token']!=1){
$_SESSION['fb_token']=1;
$token_url="https://graph.facebook.com/oauth/access_token?"
."client_id=" .$app_id
."&redirect_uri=" .$url
."&client_secret=" .$secret
."&code=" .$code;
$response = file_get_contents($token_url);
$params = null;
parse_str($response, $params);
$token=$params['access_token'];
$qry="UPDATE `settings` SET `FB_token`='$token'";
$result=mysql_query($qry);
}
Placing the returned $token_url in my browser gives me a page with the token and expiration. Running the script returns a very vague "sorry, there was a problem" message. Almost all of the threads I have seen with problems doing this have been due to differences in the redirect uri's, but both the login and token request get the uri from the exact same place.
scopeand thegrant_typeparameters. maybe try adding these and see if it works? (grant_typemust beauthorization_codewhen obtaining the access token) – mulllhausen Jan 7 at 9:24client_id='+app_id+'&redirect_uri='+url+'&scope='+scope+'&state='+state;Is pushed way off to the right in the login url. So I did usescope. Do you mean that scope should be passed for the code/token exchange also? And where did you find documentation forgrant_typein serverside flow? I have not been able to find any documentation on the serverside oauth process aside from (developers.facebook.com/docs/howtos/login/server-side-login). – Mathew Moon Jan 7 at 12:08