2

基本上,我目前正在使用 Actionscript 3.0 和 AIR (Flash Pro 6) 构建手机游戏。我想添加一个 facebook 分享按钮,用户可以将他们的成就发布到他们的墙上。

该帖子将包含一些文字和图像。

我不知道从哪里开始。有人可以帮忙吗?谢谢b4...

4

2 回答 2

0

这应该会有所帮助: http ://code.google.com/p/facebook-actionscript-api/

这里还有文档: http ://code.google.com/p/facebook-actionscript-api/downloads/detail?name=GraphAPI_Documentation_1_8_1.zip&can=2&q=

于 2013-03-27T22:58:14.953 回答
0

您可以使用此 AS3 代码来使用 FB 分享按钮。

fbShareBtn.addEventListener(MouseEvent. CLICK, shareapp)
 function shareapp(evt:Event):void
            {

            var req:URLRequest = new URLRequest();
            req.url = "http://www.facebook.com/dialog/feed";
            var vars:URLVariables = new URLVariables();
            vars.app_id = "xxxxxxxxxxxx"; // your application's id
            vars.link = "http://youromainhere";
            vars.picture = "http://yourimage";
            vars.name = "My Game";
            vars.caption = "My Score ";
            //vars.description = "My score is " + String(score) + " Try and you!";
            vars.redirect_uri = "http://yourdomainhere";
            req.data = vars;
            req.method = URLRequestMethod.GET;
            navigateToURL(req, "_blank");

            }
于 2017-05-20T11:46:11.330 回答