我正在使用图形 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];
它有时会返回黑色响应
任何帮助将不胜感激。
谢谢