Facebook 应用程序被自动禁止

发布于 2024-10-31 00:43:43 字数 1225 浏览 0 评论 0原文

我创建了一个简单的 Facebook 应用程序,告诉用户他们使用 Facebook 个人资料的情况如何。我已经让它在 Facebook 上运行,现在它已经两次被 Facebook 系统自动禁止了。第一次可能是因为我们办公室里有很多人添加应用程序并向他们的朋友发送请求,也可能是因为我们在墙上的帖子中自动填充消息参数。好吧,我改变了这一切,并尝试重新启动该应用程序。我们第二次被自动禁止。我根本不知道为什么,而且我没有从 Facebook 得到关于这个问题的反馈。以下是我们与图形 API 交互的快速概述。

  • 检查会话 (php sdk)
  • 如果没有会话,则获取登录链接 (php sdk)
  • 初始化 Javascript sdk
  • FB.canvas.setSize (javascript SDK)
  • 请求这些权限

    email,user_location,read_stream,manage_pages,user_checkins,user_likes,user_events,user_notes,publish_stream

  • 获取 uid ( php sdk)

  • 从api获取/me (php sdk)
  • 从api获取/me/friends (php sdk)
  • 从api获取/$uid/feed (php sdk)
  • 获取/$uid/从 api (php sdk) 获取帐户
  • (php sdk)从 api (php sdk) 获取 /$uid/checkins
  • 从 api (php sdk) 获取 /$uid/likes 从 api
  • (php sdk) 获取 /$uid/events 从 api (php sdk)
  • 获取 /$uid/notes ( php sdk)
  • 发布 FB.ui 应用程序请求(javascript sdk),用户单击按钮打开对话框
  • 发布 FB.ui 提要(javascript sdk),用户单击按钮,没有预填充消息
  • 发布 FB.ui 应用程序请求(javascript sdk),用户单击按钮以弹出对话框
  • 发布 FB.ui 应用程序请求(javascript sdk),用户单击按钮以弹出对话框

这些是所有交互,如果你们知道其中任何一个是否可能导致我的应用程序自动禁止,请告诉我。我很茫然,我不想尝试再次启动它,结果却再次被禁止。

如果您需要任何其他信息,请告诉我。感谢您抽出时间。

I have created a simple Facebook app that tells the user how well they use their Facebook profile. And I've had it running on Facebook and twice now it has been auto-banned by Facebook's system. The first time it was probably due to us having a lot of people in the office here add the app and send requests to their friends, and possibly because we were auto-populating the message parameter in wall posts. Well I changed all that and tried to re-launch the app. And we were auto-banned a second time. I'm not sure at all why, and I'm getting no feedback from Facebook on the issue. Here's a quick overview of the interactions we have with the graph api.

  • Check Session (php sdk)
  • If no session get the login link (php sdk)
  • Init Javascript sdk
  • FB.canvas.setSize (javascript SDK)
  • Request these permissions

    email,user_location,read_stream,manage_pages,user_checkins,user_likes,user_events,user_notes,publish_stream

  • Get uid (php sdk)

  • Get /me from api (php sdk)
  • Get /me/friends from api (php sdk)
  • Get /$uid/feed from api (php sdk)
  • Get /$uid/accounts from api (php sdk)
  • Get /$uid/checkins from api (php sdk)
  • Get /$uid/likes from api (php sdk)
  • Get /$uid/eventsfrom api (php sdk)
  • Get /$uid/notesfrom api (php sdk)
  • Post FB.ui app requests (javascript sdk), user clicks a button to bring up dialog
  • Post FB.ui feed (javascript sdk), user clicks button, no message prefilled
  • Post FB.ui app requests (javascript sdk), user clicks a button to bring up dialog
  • Post FB.ui app requests (javascript sdk), user clicks a button to bring up dialog

Those are all the interactions, if you guys have any idea if any of this could be causing my app to get auto-banned please let me know. I'm at a loss and I don't want to try and launch it again only to get it banned once more.

If you require any additional information let me know. And thanks for your time.

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

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

发布评论

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

评论(1

百合的盛世恋 2024-11-07 00:43:43

我也被禁止了 15 次...:D

这些可能是被禁止的原因:

  1. 你不允许拥有超过 4 个权限。如果仍然有必要,请完全控制用户的所有权限。
  2. 对于使用您权限的每个操作,用户都应该清楚地了解。 (如果需要,请勾选)
  3. 如果您使用javascript sdk进行墙贴,那么需要publish_stream权限吗? ->这被视为垃圾邮件。
  4. 向用户提供您的隐私政策(在 Facebook 设置中添加隐私网址)

总的来说,我建议您减少权限。

“更少的权限,更多的用户”

了解更多详细信息。希望这能给你一些想法......:)

I too banned 15 times... :D

These could the reason for banned:

  1. You are not allow to have more than 4 permissions. if still necessary, give full control over all permissions to users.
  2. For every action which uses your permissions should be well cleared to users. (Put checkboxes if needed)
  3. If you are using javascript sdk for wall post, then what the need of publish_stream permission? -> This is taken into consideration as spamming.
  4. Provide your privacy policy to users (Add privacy url in facebook setting)

Overall i suggest you to reduce permissions.

"LESS PERMISSIONS MORE USERS"

For more and detailed information. Hope this gives you some idea... :)

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