不确定这里有什么问题..
<?php require_once 'Facebook/autoload.php';
session_start()
$fb = new Facebook\Facebook([
'app_id' => 'xxxx',
'app_secret' => 'xxxx',
'default_graph_version' => 'v2.5',
]);
$helper = $fb->getRedirectLoginHelper();
$permissions = ['email', 'name', 'user_id']; // optional
$loginUrl = $helper->getLoginUrl('http://www.website.co.uk/index.php', $permissions);
echo '<a href="' . $loginUrl . '">Log in with Facebook!</a>';
?>
我收到错误:
解析错误:语法错误,意外&#39; $ fb&#39; (T_VARIABLE)位于第5行&#34的/homepages/4/d570601812/htdocs/daf/inc/head.php;
答案 0 :(得分:0)
你忘记了分号。
在代码的第二行将session_start()
更改为session_start();
。