Legyes.hu

Saját megosztás gomb készítése

Azoknak, akik nem szeretik a bigdata szörnyet etetni:

Facebook:

http://www.facebook.com/share.php?u=[URL]&title=[CIM]

Ha az OpenGraph metákat szeretnénk használni, akkor jQuery-vel így tudjuk megoldani:

$('.fb-recommend-link').off('click').on('click', function(){
  try {
    FB.ui({
      method: 'share_open_graph',
      action_type: 'og.likes',
      action_properties: JSON.stringify({
        object: window.location.href,
      })
    }, function(response){});
  }
  catch(e){}
 });

Az action_type lista itt található: https://developers.facebook.com/docs/reference/opengraph/

Twitter:

http://twitter.com/intent/tweet?status=[CIM]+[URL]

Tumblr:

http://www.tumblr.com/share?v=3&u=[URL]&t=[CIM]

Google Plus:

https://plus.google.com/share?url=[URL]

Pinterest:

http://pinterest.com/pin/create/bookmarklet/?media=[MEDIA]&url=[URL]&is_video=false&description=[CIM]

Reddit:

http://www.reddit.com/submit?url=[URL]&title=[CIM]

Forrás és továbbiak: http://petragregorova.com/articles/social-share-buttons-with-custom-icons/

Exit mobile version