从应用程序发送 Facebook 消息
如何从 Facebook iFrame 中包含的 Flex 应用程序内部并使用 Facebook 的官方 AS3 库向当前登录的用户发送消息?
How can I send a message to the currently logged in user from inside a Flex application contained in a Facebook iFrame and using the official AS3 Library for Facebook please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
迄今为止,Graph API 是使用 Facebook 的最简单方法。
http://code.google.com/p/fbas/
这远非完整的实现,但 Graph 非常简单,不需要很长时间即可实现您需要的任何功能。
注意:当我使用它时,我将项目主页上示例代码的 javascript 部分移植到 AS3 和 AS3 中。
外部接口
。它将外部依赖性减少到零(swfobject 除外)To date the Graph API is the easiest way to work with facebook.
http://code.google.com/p/fbas/
It's far from a complete implementation, but Graph is so simple it shouldn't take long to implement any features you need.
NOTE: When I've used it I ported the javascript portion of the example code on the project's main page to AS3 &
ExternalInterface
. It reduced external dependencies to zero (with the exception of swfobject)Facebook 不允许您发送消息。无论哪种方式,您都可以代表用户向用户的朋友源发布自定义消息,并且将显示源中发布的通知。
将您的请求发布到 http://graph.facebook.com/PROFILE_ID/feed
需要publish_stream 权限。
您可以参考此链接 http://facebooksdk.blogspot.com/2011/04/ facebook-album.html
Facebook does not allow you to send messages . Either way , you can post to the user's friends feed on behalf of the user , with a custom message and the the notification for the post in feed will be displayed.
Post your request to http://graph.facebook.com/PROFILE_ID/feed
Requires the publish_stream permission.
You can refer this link http://facebooksdk.blogspot.com/2011/04/facebook-album.html