0

我正在使用图形 api 在我的一个应用程序中交换访问令牌,但有时它会返回空白输出。

我正在使用此代码片段

$graph_url      = "https://graph.facebook.com/oauth/access_token?client_id=" .$app_id."&client_secret=" .$app_secret."&grant_type=fb_exchange_token&fb_exchange_token=".$user_access_token;
            $response       = @file_get_contents($graph_url);
            $response_arr   = explode('&',$response);

            $exchanged_user_access_token = explode('=',$response_arr[0]);
            return $exchanged_user_access_token[1];

它有时会返回黑色响应

任何帮助将不胜感激。

谢谢

4

1 回答 1

0

是的,你可以解决这个问题。使用以下代码

<?php
$graph_url      = "https://graph.facebook.com/oauth/access_token?client_id=" .$app_id."&client_secret=" .$app_secret."&grant_type=fb_exchange_token&fb_exchange_token=".$user_access_token;
$response       = @file_get_contents($graph_url);
parse_str($response,$output);
$extended_access_token = $output['access_token'];
?>

我希望这会帮助你

于 2013-06-12T12:39:37.467 回答