我仍在尝试让我的网站使用Facebook Connect。我一直在使用指南here。
以下代码从localhost运行(我的应用ID和密码ID已被删除):
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<?php
define('YOUR_APP_ID', '**MY APP ID**');
define('YOUR_APP_SECRET', '**MY SECRET APP ID**');
$cookie = get_facebook_cookie(YOUR_APP_ID, YOUR_APP_SECRET);
function get_facebook_cookie($app_id, $app_secret) {
$args = array();
parse_str(trim($_COOKIE['fbs_' . $app_id], '\\"'), $args);
ksort($args);
$payload = '';
foreach ($args as $key => $value) {
if ($key != 'sig') {
$payload .= $key . '=' . $value;
}
}
if (md5($payload . $app_secret) != $args['sig']) {
return null;
}
return $args;
}
$user = json_decode(file_get_contents(
'https://graph.facebook.com/me?access_token=' .
$cookie['access_token']));
?>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml">
<?php if ($cookie) { ?>
<li> Welcome <?= $user->name ?></li>
<?php } else { ?>
<fb:login-button></fb:login-button>
<?php } ?>
<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>
FB.init({appId: '<?= **MY APP ID** ?>', status: true,
cookie: true, xfbml: true});
FB.Event.subscribe('auth.login', function(response) {
window.location.reload();
});
</script>
</html>
但是当我尝试通过WAMP运行它时,会给我以下错误:
Notice: Undefined index: fbs_**MY APP ID** in C:\wamp\www\fbtest.php on line 12
Notice: Undefined index: sig in C:\wamp\www\fbtest.php on line 20
Warning: file_get_contents() [function.file-get-contents]: Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in C:\wamp\www\fbtest.php on line 30
Warning: file_get_contents(https://graph.facebook.com/me?access_token=) [function.file-get-contents]: failed to open stream: Result too large in C:\wamp\www\fbtest.php on line 30
但是,我怀疑这可能是WAMP的一个问题。所以我把这段代码放在私人服务器上并且没有这样的错误...但是,当我尝试点击登录 Facebook按钮时,它会打开一个新窗口,它只告诉我{{ 1}}
我不确定如何解决这个问题。
答案 0 :(得分:1)
尝试检查您是否向javascript发送了正确的凭据。它看起来像您的应用程序的url或appId与您在应用程序编辑部分填写的不正确或相同。如果您在Iframe中运行,请发送此标题,这将真正有所帮助,您将不会遇到其他问题。
Header('P3P: policyref="/p3p.xml", CP="IDC DSP COR IVAi IVDi OUR TST"');
使用WAMP。一个问题是您在file_get_contents中不支持https。是来自实际服务器的错误还是您在那里更改了应用ID?
如果您仍然遇到问题,我可以向您发送一些小例子,以便您进行测试。
答案 1 :(得分:0)
即使您修复了https问题,Facebook Connect也无法通过localhost运行。该脚本需要从您注册Facebook应用程序的域中执行。