一次操作即可发布到多个朋友墙上
我见过一个应用程序,我可以通过一次操作将帖子发布到多个朋友的墙上。基本上,用户会为每个朋友选中一个框,然后点击一个发帖按钮,每个被选中的朋友现在都有一个墙贴。
我以为这是不允许的。是否发生了变化或者应用程序不符合政策?
I have seen an app where I can post to multiple friends' walls in one action. Basically the user will check a box for each friend and then hit a post button and each of the friends that were checked have a wall post now.
I thought this wasn't allowed. Did something change or is the app not in compliance with the Policies?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是否可以使用 CRON 延迟/安排朋友墙上的每个帖子,以便每个帖子都有延迟。我认为,这样一来,人们就可以逃脱 Facebook 的惩罚。
Can each post to friends' walls be delayed/scheduled using CRON so that there is a delay in each post. This way, I think, one can escape penalty from Facebook.
通过获得publish_stream权限,您可以执行此功能。
从这里: https://developers.facebook.com/docs/reference/api/permissions /
publish_stream
使您的应用能够将内容、评论和点赞发布到用户的流以及用户朋友的流中。有了此权限,您可以随时将内容发布到用户的源,而无需进行离线访问。但请注意,Facebook 推荐用户发起的共享模式。
然后,您可以利用 Graph Api 来执行这些功能:
https://developers.facebook。 com/docs/reference/api/post/
https://developers.facebook.com/docs/reference/api/status/
希望这有帮助
By gaining the publish_stream permission you can carry out this functionality.
From here: https://developers.facebook.com/docs/reference/api/permissions/
publish_stream
Enables your app to post content, comments, and likes to a user's stream and to the streams of the user's friends. With this permission, you can publish content to a user's feed at any time, without requiring offline_access. However, please note that Facebook recommends a user-initiated sharing model.
You can then utilise the Graph Api to perform these functions:
https://developers.facebook.com/docs/reference/api/post/
https://developers.facebook.com/docs/reference/api/status/
Hope this helps