我正在尝试使用应用中心推广我的应用,但从 Web 预览中我无法访问该网站。被调用的链接是http://www.myappsite.it/?fb_source=appcenter&fb_appcenter=1&code=a_long_string
从 myappsite 的 index.php 中,我使用这种和平的 php 代码来获取来自 facebook 的用户
$code = $_REQUEST["code"];
if($_REQUEST['state'] == $_SESSION['state'] && !$user && strlen($code) > 0)
{
$token_url = "https://graph.facebook.com/oauth/access_token?" .
"client_id=" . $appId . "&redirect_uri=" . urlencode("http://www.myappsite.it/") .
"&client_secret=" . $secret . "&code=" . $code;
$response = @file_get_contents($token_url);
$params = null;
parse_str($response, $params);
$graph_url = "https://graph.facebook.com/me?access_token=" . $params['access_token'];
$user = json_decode(file_get_contents($graph_url));
echo("Hello " . $user->name);
}
但 $params['access_token'] 是空的,因为 $token_url 返回
{
"error": {
"message": "Error validating verification code.",
"type": "OAuthException",
"code": 100
}
}
如何让用户从应用中心预览网页登录?