我的 FQL 查询有问题。我阅读了所有相关主题,但找不到我的错误。我的 Facebook 应用程序具有以下权限:电子邮件、user_birthday、user_likes、read_stream。如果用户喜欢我的页面,我想在一个函数中获取,但我的查询没有返回结果!相同的查询已在 Graph API 资源管理器中进行了测试,我得到了结果。这是功能:
function getUserInfo(accessToken) {
FB.api('/me', function (response) {
var user_id = response.id;
var page_id = "40796308305"; //page id for like
var fql_query = "SELECT uid FROM page_fan WHERE page_id = " + page_id + "and uid=" + user_id; // +"&access_token=" + accessToken.toString();
var the_query = FB.Data.query(fql_query);
alert(fql_query);
// 第一种方式
FB.api({
method: 'fql.query',
query: fql_query,
access_token: accessToken
}, function (resp) {
alert(resp);
if (resp.length) {
alert('A fan!');
$("#container_like").show();
$("#container_notlike").hide();
document.getElementById('displayname').innerHTML = response.name;
document.getElementById('FBId').innerHTML = response.id;
} else {
alert('Not a fan!');
$("#container_notlike").show();
$("#container_like").hide();
}
}
);
// 第二种方式
the_query.wait(function (rows) {
if (rows.length == 1 && rows[0].uid == user_id) {
alert('A fan!');
$("#container_like").show();
$("#container_notlike").hide();
document.getElementById('displayname').innerHTML = response.name;
document.getElementById('FBId').innerHTML = response.id;
} else {
alert('NOT a fan!');
$("#container_notlike").show();
$("#container_like").hide();
}
});
});
}
accessToken 用于 fql_query 中的第二种方式(现在注释)。我从代码中获取它:
FB.getLoginStatus(function (response) {
if (response.status === 'connected') {
var accessToken = response.authResponse.accessToken;
getUserInfo(accessToken);
...等等。所以我看到了我所有的警报,但查询没有返回数据。有什么问题?