gpt4 book ai didi

stream - FQL : stream table does not return others links

转载 作者:行者123 更新时间:2023-12-03 17:57:10 26 4
gpt4 key购买 nike

我正在尝试通过 FQL 查询获取我公司页面的所有帖子。

  • 其他人的正常帖子返回正常(仅包含文本的帖子)。
  • 公司本身包含链接的帖子返回正常。

  • 但:
  • 别人的帖子然后是公司自己的帖子,包含的链接不是从流表中返回的。

  • 有谁知道为什么?

    我的简单 FQL 查询:
    SELECT 
    post_id, type, actor_id, message
    FROM stream
    WHERE
    source_id = 123
    AND updated_time >= 123
    ORDER BY updated_time
    LIMIT 50 OFFSET 0

    最佳答案

    您需要使用另一个 FQL 查询来获取链接。使用 Link代替这个表。

    关于stream - FQL : stream table does not return others links,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9596418/

    26 4 0