我想使用Graph Api v3.0在我的项目中包括Facebook登录。 这就是感兴趣的文件的路径。
index.php
config.php
Facebook (folder)
--> autoload.php
--> Facebook.php
--> other files..
那是config.php中的代码
require_once 'Facebook/autoload.php';
$FB = new \Facebook\Facebook({ (Line 10)
'app_id' => 'myappid',
'app_secret' => 'myappsecret',
'default_graph_version' => 'v3.0'
});
当我转到执行config.php(index.php)的网址时,它给了我这个错误:
Parse error: syntax error, unexpected '{' in C:\xampp\htdocs\config.php on line 10
怎么了?
答案 0 :(得分:-1)
#Did you try to remove this('()') on line 10 and line 14 ? As I remember JSON does not like brackets.
require_once 'Facebook/autoload.php';
$FB = new \Facebook\Facebook{ /*(Line 10) or use '[' instead\*
'app_id' => 'myappid',
'app_secret' => 'myappsecret',
'default_graph_version' => 'v3.0'
};