SkillAgentSearch skills...

Socialcount.js

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

Install / Use

/learn @olahol/Socialcount.js
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

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

  • Remove Twitter count, https://blog.twitter.com/2015/hard-decisions-for-a-sustainable-platform

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

View on GitHub
GitHub Stars17
CategoryCustomer
Updated7y ago
Forks5

Languages

JavaScript

Security Score

75/100

Audited on May 24, 2018

No findings