通过获取 url 使用 FQL 查询 Facebook Graph
我目前正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我通过传递应用程序的 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.
这通常有效
This usually works
请改为查询
user
表。Query the
user
table instead.