通过代码(API)向非好友(Facebook 上的任何人)发送消息和 Facebook 应用程序请求
- 我可以使用 API 和我的帐户凭据向 Facebook 上的非好友发送 Facebook 消息吗? 2. 我可以创建一个Facebook应用程序并向非朋友发送申请请求吗?
- Can I send Facebook Message to a non-friend on facebook with API, with my account credentials ? 2. Can I create an facebook app and send application request to non-friend ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
并不真地。您可以发送好友请求,如果接受,则发送消息。
Not really. You could send a friend request and then if accepted send the message.
实际上,有 Facebook 发送对话框 (http://developers.facebook.com/docs /reference/dialogs/send/),它允许您一次向最多 50 个用户批量发送消息。这不是完全自动化的,因为它会显示一个对话框,您需要填写消息(复制/粘贴有效)并单击“确定”。
Facebook 发送对话框在 Facebook PowerShell 模块 (http://facebookpsmodule.codeplex.com) 中公开为 Show-FBMessageDialog。请注意,即使列表中只有一个非好友也会使整批用户失效,因此请考虑使用 -FriendsOnly 选项。
至于向非好友发送消息,Facebook 禁止这样做,大概是因为存在明显的滥用可能性。
Actually, there is the Facebook Send Dialog (http://developers.facebook.com/docs/reference/dialogs/send/) which permits you to send messages to batches of up to 50 users at a time. This is not fully automatable, since it displays a dialog and you need to fill in the message (copy/paste works) and click OK.
Facebook Send Dialog is exposed in Facebook PowerShell Module (http://facebookpsmodule.codeplex.com) as Show-FBMessageDialog. Note that even one non-friend in the list will invalidate the whole batch of users, so consider using the -FriendsOnly option.
As for sending messages to non-friends, Facebook prohibits this, presumably due to the obvious potential for abuse.