通过获取 url 使用 FQL 查询 Facebook Graph

发布于 2024-10-13 07:20:53 字数 429 浏览 4 评论 0原文

我目前正在尝试使用 FQL 来查找注册用户的网络。

根据文档,获取的网址应该类似于:

https:// /api.facebook.com/method/fql.query?query=SELECT affiliations FROM standard_user_info WHERE uid=me()&access_token=tokengoeshere&application_secret=appsecretgoeshere

但是,在查询时我得到错误代码 15: The method您拨打的电话必须使用应用程序秘密签名的会话进行呼叫。

有谁知道如何解决这个问题?

谢谢。

I'm currently trying to us FQL to find the networks of registered users.

According to the documentation, the url fetched should be something along the lines of:

https://api.facebook.com/method/fql.query?query=SELECT affiliations FROM standard_user_info WHERE uid=me()&access_token=tokengoeshere&application_secret=appsecretgoeshere

However, when querying I get Error code 15: The method you are calling must be called with an app secret signed session.

Does anyone know how to fix this?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

素罗衫 2024-10-20 07:20:53

我通过传递应用程序的 access_token(不是将我与特定用户关联的访问令牌)来执行此查询,但不传递 app_secret。我得到一个空集作为响应,但没有错误。

另外(只是确保)您显然需要对查询进行 URL 转义。

I execute this query by passing my app's access_token (not an access token that associates me with a certain user) and without the app_secret. I get an empty set in response but no error.

Also (just making sure) you will obviously need to URL-escape the query.

错々过的事 2024-10-20 07:20:53

这通常有效

var facebookURL = 'https://api.facebook.com/method/fql.query?query='

var query = 'SELECT bla FROM bla'

var accessToken = 'your access token'

var appToken = '&access_token='+accessToken+'&callback=?'

var url = facebookURL + query + appToken;

This usually works

var facebookURL = 'https://api.facebook.com/method/fql.query?query='

var query = 'SELECT bla FROM bla'

var accessToken = 'your access token'

var appToken = '&access_token='+accessToken+'&callback=?'

var url = facebookURL + query + appToken;
稚气少女 2024-10-20 07:20:53

请改为查询 user 表。

Query the user table instead.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文