All Projects → olahol → socialcount.js

olahol / socialcount.js

Licence: MIT license
Tiny javascript library for getting social share counts. Pinterest, Facebook, Twitter and Google Plus supported.

Programming Languages

javascript
184084 projects - #8 most used programming language

socialcount.js

Easily get social share counts for a url.

browser support

Example

Socialcount.get("facebook", "http://github.com", function (count) {
  console.log(count); // 11111
});
Socialcount.all("http://github.com", function (counts) {
  console.log(counts); // { facebook: 11111, pinterest: 6, google: 10000, linkedin: 795 }
});

Methods

Socialcount.get(provider, url, cb(count))

Get share count for url from provider (currently facebook, pinterest, google, and linkedIn.)


Socialcount.all(url, cb(counts))

Get all share counts for url from available providers, counts is an object with the providers as keys and the counts as values.


Socialcount.get(provider, cb(count))

Get share count for window.location from provider (currently facebook, pinterest, google, and linkedIn.)


Socialcount.all(cb(counts))

Get all share counts for window.location from available providers, counts is an object with the providers as keys and the counts as values.

CHANGELOG

v1.0.0

v0.1.1

  • Add LinkedIn as a provider.

v0.1.0

  • Add UMD so project can be used as AMD module.
  • Add Google Plus as provider google.

v0.0.4

  • If called without a url, use window.location

Contributors

  • Ola Holmström (@olahol)
  • Filip Danisko (@filipdanisko)

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].