从应用程序发送 Facebook 消息

发布于 2024-09-10 15:34:32 字数 78 浏览 5 评论 0原文

如何从 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 技术交流群。

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

发布评论

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

评论(2

柠檬心 2024-09-17 15:34:32

迄今为止,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)

苦笑流年记忆 2024-09-17 15:34:32

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

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