FQL 控制台抛出“Ops”错误

发布于 2024-10-20 22:16:26 字数 469 浏览 4 评论 0原文

我有这个 FQL 查询,

select uid, name, website
from user
where website != "" and uid in (
    select uid2
    from friend
    where uid1 = me()
)

我在 FQL 控制台 中测试了此查询几个月前,效果很好。现在我再试一次,出现以下错误:

the error

可以翻译成英文,例如“发生错误。我们正在努力尽快解决这个问题”。我尝试了不同的查询,但没有人工作,都抛出相同的错误。有人有什么建议吗?

I have this FQL query

select uid, name, website
from user
where website != "" and uid in (
    select uid2
    from friend
    where uid1 = me()
)

I tested this query in the FQL console a couple of months ago, and it worked fine. Now I try it again and I have this error:

the error

that can be translated in english like "An error occurred. We are working to solve it soon". I tried with different queries and no one work, all throw the same error. Someone have any suggestions?

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

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

发布评论

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

评论(1

貪欢 2024-10-27 22:16:26

自未指定版本以来,Facebook 不允许查询某些私有参数(例如网站)。所以我的旧查询现在无效。

Since an unspecified version, Facebook doesn't allow to query some private parameters (like the websites). So my old query is not valid now.

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