1

我正在尝试从 Flash as3 网站共享 URL,但无法使其正常工作...我尝试了此处给出的两种方式:如何在 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 共享器.....我尝试了许多不同的方法来组合这两种解决方案,但除了奇怪的 url 不起作用之外我什么也没得到......

拜托,有人可以帮我解决这个问题,或者告诉我如何使用第二种解决方案,但与共享者一起使用?

非常感谢您的帮助

4

3 回答 3

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);
}
于 2013-09-04T20:33:49.877 回答
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" />
于 2012-05-30T10:33:07.270 回答
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")

这样,您可以将任何变量传递给该函数。例如,每当有人分享时,您都可以拥有不同的图片,而仅使用元标签是不可能的.....

唯一的事情是您必须创建该 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。希望这可以帮助。

于 2012-06-03T14:22:38.823 回答