Facebook:发送应用邀请
如何发送使用具有 Graph API 的应用程序的邀请?我查看了参考资料,找不到合适的东西。有什么线索吗?
How can I send an invitation to use an app with Graph API? I looked at the reference, and can't find something that fits. Any clue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
HTML/javascript 示例:
您可以将 javascript 关联到链接的单击事件等。
您可以在此处找到详细信息:
http://developers.facebook.com/blog/post/464/
A HTML/javascript example:
You can associate the javascript to click event of a link, etc.
You can find the details here:
http://developers.facebook.com/blog/post/464/
如果您需要使用restfb,正如我从您的标签中获得的那样,您可以尝试以下操作:
这是一个自包含的junit测试,用于检索身份验证令牌并发布apprequest。不需要用户生成 auth_token,但您只能将这样的应用程序请求发送给已经授权您的应用程序的用户。
依赖项是 JUnit、Commons HttpClient 和 Restfb 本身。
If you need to use restfb, as I got from your tags, you can try this:
This is a self contained junit test that retrieves the authentication token and posts an apprequest. No user generated auth_token is required but you can only send apprequests like this to users that already have authorized your app.
Dependencies are JUnit, Commons HttpClient and restfb itself.
http://developers.facebook.com/docs/reference/dialogs/requests/
您可以使用上面链接中所述的对话框
http://developers.facebook.com/docs/reference/dialogs/requests/
You can use dialogs as described in the above link