如何社交GWT应用程序?

时间:2011-05-17 13:44:42

标签: gwt twitter facebook linkedin

我正在开发一个显示公司提供的服务的GWT应用程序,我必须允许用户在Facebook,LinkedIn和Twitter等社交网络中共享服务链接。 你知道怎么做这样的事吗? 任何帮助表示赞赏 提前感谢您的帮助:)

修改

我试过AddThis但没有显示任何内容 有代码:

    HTML socialNetworkLink = new HTML(
            "<div class=\"addthis_toolbox addthis_default_style addthis_32x32_style\">"
                    + "<a class=\"addthis_button_preferred_1\"></a>"
                    + "<a class=\"addthis_button_preferred_2\"></a>"
                    + "<a class=\"addthis_button_preferred_3\"></a>"
                    + "<a class=\"addthis_button_preferred_4\"></a>"
                    + "<a class=\"addthis_button_compact\"></a>"
                    + "<a class=\"addthis_counter addthis_bubble_style\"></a>"
                    + "</div>"
                    + "<script type=\"text/javascript\">var addthis_config = {\"data_track_clickback\":true};</script>"
                    + "<script type=\"text/javascript\" src=\"http://s7.addthis.com/js/250/addthis_widget.js#pubid=ra-4dd380ca4d8393c9\"></script>");
    sharePanel.add(socialNetworkLink);

2 个答案:

答案 0 :(得分:2)

您可以使用addthis.com等内容共享工具。

已编辑:sharethis.com

答案 1 :(得分:1)