无对话发送 Facebook 应用请求
由于可以使用 FB.api('Id/feed...) 在没有请求对话框的情况下在用户墙上发布,是否可以通过 FB.api 向用户发送应用请求?而不是 FB.ui(apprequests...)。
谢谢您的回答。我真的需要帮助,我已经四处寻找了几个星期......
As it is possible to post on users wall without the request dialog using FB.api('Id/feed...), is it possible to send users an apprequests through the FB.api? and not FB.ui(apprequests...).
Thank you for your answer. I really need help on this I have been looking around for weeks...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在用户之间以及应用程序之间发送应用程序请求。
用户到用户的应用程序请求是通过请求对话框框发起的
。用于重新吸引用户使用您的应用程序,并且只能发送给已安装该应用程序的用户。例如,通知用户自上次访问以来发生了一些变化,“您的 10 位朋友现在在线”。
您可以通过使用 应用程序的 access_token。
You can send apprequests from user to user and app to user.
The apprequests from user to user are initiated with the Requests dialog box
App to User Requests can be used to re-engage a user in your app and can only be sent to users that have installed the app. For example, notifying a user that something has changed since their last visit, "10 of your friends are now online".
You can post a apprequest for a user by issuing an
HTTP POST
request to/USER_ID/apprequests
with the app's access_token.目前无法在没有对话框的情况下发送*apprequest*s。
It is currently not possible to send *apprequest*s without the dialog.