0

我想为我的项目使用 addthis 自定义服务。我尝试了以下代码:

<script type="text/javascript">
var addthis_config = {
  services_custom: [{
          name: "AddThis",
          url: "http://addthis.com/bookmark.php?url=http://purab.com&title=purabtitle",
          icon: "http://addthis.com/images/addthis32.gif"
  }]
  }
 </script>

<a class="addthis_button_addthis.com 32x32"></a>
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-5281ee5c7439355a"></script>
<!-- AddThis Button END -->

我从以下 URL 获得了以下代码片段: Addthis Custom Services API

但是代码不起作用。我发现下面的文章谈到了同样的事情。 http://support.addthis.com/customer/portal/questions/1378256-custom-service?t=89322 我向那里的支持提出了问题,但我还没有得到任何答案。

任何人都致力于添加此自定义服务

4

1 回答 1

0

因此,我复制了您的示例,并通过在 url 属性中将http://purab.com替换为 {{url}} 并将 purabtitle 替换为 {{title}} 来使其工作,因此它应该如下所示:

url: "http://addthis.com/bookmark.php?url={{url}}&title={{title}}",

试一试,如果它仍然不起作用,请告诉我。

于 2013-11-17T21:33:03.427 回答