我想问一个新手问题。我刚刚开始创建一个网站,它将使用FQL获取用户数据进行分析,我甚至在开始之前遇到了问题。我正在尝试运行我在facebook开发者网站上找到的代码,例如:
$app_id = 'YOUR_APP_ID';
$app_secret = 'YOUR_APP_SECRET';
$my_url = 'POST_AUTH_URL';
$code = $_REQUEST["code"];
// auth user
if(empty($code)) {
$dialog_url = 'https://www.facebook.com/dialog/oauth?client_id='
$app_id . '&redirect_uri=' . urlencode($my_url) ;
echo("<script>top.location.href='" . $dialog_url . "'</script>");
}
// get user access_token
$token_url = 'https://graph.facebook.com/oauth/access_token?client_id='
. $app_id . '&redirect_uri=' . urlencode($my_url)
. '&client_secret=' . $app_secret
. '&code=' . $code;
// response is of the format "access_token=AAAC..."
$access_token = substr(file_get_contents($token_url), 13);
// run fql query
$fql_query_url = 'https://graph.facebook.com/'
. 'fql?q=SELECT+uid2+FROM+friend+WHERE+uid1=me()'
. '&access_token=' . $access_token;
$fql_query_result = file_get_contents($fql_query_url);
$fql_query_obj = json_decode($fql_query_result, true);
我更改了我的app_id和app_secret,在my_url我添加了我的画布网址(但我不确定这是否正确)。
我从来没有运行查询并获得结果,因为我在这里遇到了问题:
$code = $_REQUEST["code"];
问题是:
注意:未定义的索引:第77行的C:... \ index.php中的代码
我应该更改“代码”部分吗?并进入什么?
答案 0 :(得分:0)
这只是一个Notice (not a Warning, or Error)。
您可以将其放在代码的顶部以禁止显示该消息。
error_reporting(E_ERROR | E_WARNING | E_PARSE);