Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/facebook/9.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Facebook 如何在朋友的墙上贴上自己制作的墙贴?_Facebook_Facebook Graph Api_Facebook Fql - Fatal编程技术网

Facebook 如何在朋友的墙上贴上自己制作的墙贴?

Facebook 如何在朋友的墙上贴上自己制作的墙贴?,facebook,facebook-graph-api,facebook-fql,Facebook,Facebook Graph Api,Facebook Fql,我想把自己做的墙贴在朋友的墙上。我已读取\u流,脱机\u访问权限 现在,根据facebook文档,如果我想获取其他用户在我墙上发表的帖子,我可以使用以下FQL查询: SELECT post_id, actor_id, target_id, message FROM stream WHERE filter_key = 'others' AND source_id = me() select post_id,source_id,actor_id,target_id from stream wher

我想把自己做的墙贴在朋友的墙上。我已读取\u流,脱机\u访问权限

现在,根据facebook文档,如果我想获取其他用户在我墙上发表的帖子,我可以使用以下FQL查询:

SELECT post_id, actor_id, target_id, message FROM stream WHERE filter_key = 'others' AND source_id = me()
select post_id,source_id,actor_id,target_id from stream where actor_id=me() and filter_key='Others' 
如果我想自己制作墙贴,我提出了以下FQL查询:

SELECT post_id, actor_id, target_id, message FROM stream WHERE filter_key = 'others' AND source_id = me()
select post_id,source_id,actor_id,target_id from stream where actor_id=me() and filter_key='Others' 
有时有效,有时无效。我也尝试了下面的查询,结果什么也没有返回

select post_id,source_id,actor_id,target_id from stream where actor_id=me() and source_id in (select uid2 from friend where uid1=me())
现在下面的工作,但我必须检查个人的朋友

select post_id,source_id,actor_id,target_id from stream where actor_id=me() and source_id = <uid>

事实证明,对于给定的应用程序,一个人必须扮演开发人员、测试人员、管理员等角色。如果不是这样,他将无法访问facebook bug跟踪系统。不幸的是,创建应用程序的人忘记了将我添加为应用程序的开发人员。

事实证明,对于给定的应用程序,一个人必须扮演开发人员、测试人员、管理员等角色。如果不是这样,他将无法访问facebook bug跟踪系统。不幸的是,创建应用程序的人忘记将我添加为应用程序的开发人员。

您的第二个查询显示其他人的大写字母O无效。你刚才打错了吗?我只是打错了。正如我所说,它间歇性地工作,不能提供完整的数据。您的第二个查询显示其他人使用大写字母O,这是无效的。你刚才打错了吗?我只是打错了。正如我所说,它间歇性地工作,不能提供完整的数据。