【发布时间】:2014-05-21 16:04:36
【问题描述】:
我正在尝试从给定链接中获得用户的喜欢-
例如我的链接是-“http//:www.example.org”
现在尝试获取用户之前是否喜欢过此链接。
FB.api({
method: 'fql.query',
query: "SELECT uid from object_id WHERE uid = " + user_id + "and link_id =" + page_url
}, function (rows) {
console.log(rows);
});
但是这个查询没有在控制台中显示undefined。
我想知道使用 facebook graph API 参考的方法。
【问题讨论】:
标签: facebook facebook-graph-api