0

アプリケーションの 1 つでグラフ 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