惠, 我有一个情况。我使用PHP sdk3.0进行Facebook连接,并想在我的网站上使用facebook id登录用户。我将当前用户的详细信息保存到我的数据库中,如何让用户访问令牌以便以后用户使用它。
答案 0 :(得分:0)
尝试这样的事情
<?php
if ($_REQUEST['code']) {
$app_id = "<app id>";
$app_secret = "<secret key for your app>";
$my_url = "<url to your app>";
$code = $_REQUEST["code"];
$token_url = "https://graph.facebook.com/oauth/access_token?client_id="
. $app_id . "&redirect_uri=" . urlencode($my_url) . "&client_secret="
. $app_secret . "&code=" . $code;
$access_token = file_get_contents($token_url);
$graph_url = "https://graph.facebook.com/me?" . $access_token;
$user = json_decode(file_get_contents($graph_url));
echo $access_token . "<br />";
echo $user->name . "<br />";
echo $user->id . "<br />";
}
?>