addthis share vs custom share button

给你一囗甜甜゛ 提交于 2019-11-28 12:44:05

问题


i need to add to my website a share-feature.

this php page should allow users to share my webiste on the social network, but i need to set a custom url, title, description and image.

i have try with addthis share buttons, but i m not sure that is possibile to fully customize the buttons... right?

there are other services like that? or in my case is better to add share button with facebook api, twitter api,..?

this is the addthis share code:

<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" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=xx"></script>

回答1:


You can set a custom title, url and description by specifying addthis:title, addthis:url and addthis:description tags in you toolbox HTML like this:

<div class="addthis_toolbox addthis_default_style addthis_32x32_style"
    addthis:url="http://example.com"
    addthis:title="An Example Title"
    addthis:description="An Example Description">

However, Facebook and some other services don't respect the values sent to them and scrape your page for og:title, og:url and og:description tags. So to be safe, specify the above in your AddThis code and also specify the same values for your og tags. You can read more about the og tags here:

http://www.addthis.com/blog/2012/09/27/debugging-sharing-to-facebook




回答2:


You could try this: You could try this: http://sharebuttongenerator.aakilfernandes.com/



来源:https://stackoverflow.com/questions/19837406/addthis-share-vs-custom-share-button

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!