从AS3网站分享到Facebook的URL

时间:2012-05-30 09:58:44

标签: facebook actionscript sharing

我正在尝试从flash as3网站分享一个网址,我无法让它正常工作...... 我在这里尝试了两种方式:How to create a share button in AS3

第一个有效:

import flash.net.navigateToURL;
import flash.net.URLVariables;
import flash.net.URLRequest;
import flash.net.URLRequestMethod;

share_btn.addEventListener(MouseEvent.CLICK, shareClickHandler);

function shareClickHandler(evt:MouseEvent):void
{
    var varsShare:URLVariables = new URLVariables();
    varsShare.u = 'http://domain.com/pageN.html';
    varsShare.t = 'Title Page';

    var urlFacebookShare:URLRequest = new URLRequest('http://www.facebook.com/sharer.php');
    urlFacebookShare.data = varsShare;
    urlFacebookShare.method = URLRequestMethod.GET;

    navigateToURL(urlFacebookShare, '_blank');
}

但是,帖子说:

In order to use a picture add the following Metatags:
<meta name="title" content="my title" />
<meta name="description" content="my description" />
<link rel="image_src" href="images/thumbnail_image.jpg" />

但是怎么样?

第二个解决方案显示了如何添加参数:

var req:URLRequest = new URLRequest();
req.url = "http://www.facebook.com/dialog/feed";
var vars:URLVariables = new URLVariables();
vars.app_id = "000000000000"; // your application's id
vars.link = "http://YourSite.com";
vars.picture = "https://www.google.com/intl/en_com/images/srpr/logo3w.png";
vars.name = "name name";
vars.caption = "caption caption caption";
vars.description = "description description description";
vars.message = "message message message message message";
vars.redirect_uri = "http://YourSite.com";
req.data = vars;
req.method = URLRequestMethod.GET;
navigateToURL(req, "_blank");

但它没有使用Facebook分享者...... 我尝试了许多不同的方法来组合这两种解决方案,但除了奇怪的网址之外我什么都没有...

拜托,有人可以帮助我,或者告诉我如何使用第二个解决方案但是与分享者一起使用?

非常感谢您的帮助

3 个答案:

答案 0 :(得分:0)

您需要将OpenGraph元标记添加到您要共享的页面(上例中的http://domain.com/pageN.html)。您在问题中给出的元标记应该添加到那里,以便Facebook共享脚本可以提取它。

在HTML代码中的<head></head>标记之间添加以下代码:

<meta name="title" content="my title" />
<meta name="description" content="my description" />
<link rel="image_src" href="images/thumbnail_image.jpg" />

答案 1 :(得分:0)

我通常做的事情 - 我创建了一个Facebook应用程序 - 用Facebook登录网站,添加应用程序域名,然后在你的html中添加这个javascript函数:

function postToFacebook(link){              
                var caption = encodeURIComponent("this is cool");
                var name = encodeURIComponent("My cool Site");
                var pathToPicture = "http://yoursite.com/coolpicture.jpg";
                var redirect = "http://yoursite.com/redirect.html";
                var id = "123456789098876"; // your application id
                var theLink = link; // the link you want to share - this is passed as a variable from flash, similary you can pass any variables from  flash    

                var fbencoded = "http://www.facebook.com/dialog/feed?app_id=" + id + "&link=" + theLink + "&picture=" + pathToPicture + "&name=" + name +   "&caption=" + caption+ "&redirect_uri=" + redirect;
                window.open(fbencoded, "_blank");        
}

在flash中,只要你想分享,只需调用这个javascript函数,新的窗口将在facebook共享窗口中打开:

ExternalInterface.call("postToFacebook", "http://mysite.com/#/cool-page")

这样您就可以将任何变量传递给该函数。例如,只要有人分享,你就可以拥有不同的图片,而这只是meta标签......

您唯一需要创建的redirect.html - 必须位于您的域中,并且链接到您的应用程序。在重定向中,您可以使用以下内容:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
    <title></title>
    <meta http-equiv="REFRESH" content="0;url=http://www.facebook.com">
</head>
<body>

</body>
</html>

它只会将用户重定向到Facebook。 希望这会有所帮助。

答案 2 :(得分:0)

这是我从AS3中的按钮使用共享对话框的方式。我希望它可以帮到你

import flash.net.navigateToURL;

share_btn.addEventListener(MouseEvent.CLICK, shareClickHandler);

function shareClickHandler(evt:MouseEvent):void
{
    var fb_title = "titulo";
    var fb_desc = "descripcion";
    var fb_url = "http://mibff.com.mx/";
    var fab_img = "http://mibff.com.mx/MiBFF_new.jpg";
    var facebookSharer:String = "http://www.facebook.com/sharer.php?s=100&p[title]=" + fb_title + "&p[summary]=" + fb_desc + "&p[url]=" + fb_url + "&p[images][0]=" + fab_img;
    var jscommand:String = "window.open('" + facebookSharer + "','win','width=626,height=316,toolbar=no,scrollbars=no,resizable=no');";
    var sharer:URLRequest = new URLRequest("javascript:" + jscommand + " void(0);");
    navigateToURL(sharer,"_self");

    //trace(facebookSharer);
}