fliptheweb / social-widgets

Likes, shares and things like that.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Social widgets

Build Status

Likes, shares and things like that.

Table Of Contents

share

Example: https://facebook.com/sharer/sharer.php?u=http://google.com

Network URL Documentation
Facebook https://facebook.com/sharer/sharer.php?u={{LINK}} share, like
Twitter http://twitter.com/share?url={{LINK}} link
Twitter https://twitter.com/intent/tweet?url={{LINK}} link
Google Plus https://plus.google.com/share?url={{LINK}} link
Linked In http://www.linkedin.com/shareArticle?url={{LINK}} link
VK http://vkontakte.ru/share.php?url={{LINK}} link
Odnoklassniki http://www.odnoklassniki.ru/dk?st.cmd=addShare&st.s=1&st._surl={{LINK}}
Yandex http://share.yandex.ru/go.xml?service=yaru&url={{LINK}}&title={{TITLE}}&body={{TEXT}}
Livejournal http://www.livejournal.com/update.bml?subject={{TITLE}}&event={{TEXT}}&prop_taglist={{TAGS}}&href={{LINK}}

history api (reloading social widgets)

Network What to do
Twitter
  • Replace the old button with HTML code from Twitter documentation (see the link in the table above).
          Example:
          <pre><code>&lt;a href="https://twitter.com/share"
    

    class="twitter-share-button" data-url="' + window.location.href + '">Tweet</a>

  • Call twttr.widgets.load();

count-shares

Returns JSON with a number of shares for a page.

{
    "facebook": 5461703,
    "twitter": 11876867,
    "vk": 2462,
    "odnoklassniki": 547,
    "pinterest": 60,
    "linkedin": 18113
}

JavaScript (node.js)

npm install count-shares

See README here.

PHP

API

Example: ./count-shares/php/main.php?url=http://www.google.com&networks=facebook,twitter

url (required)

www.domain.com and domain.com are different websites for Twitter and Odnoklassniki.

networks

Comma separated. facebook, twitter, linkedin, pinterest, vk or odnoklassniki.

Default: Facebook and Twitter.

Bitdeli Badge

About

Likes, shares and things like that.


Languages

Language:JavaScript 63.2%Language:PHP 36.8%