Socket
Book a DemoInstallSign in
Socket

coffee_klout

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

coffee_klout

Klout API v2 wrapper, Coffee style.

0.0.9
latest
Source
npmnpm
Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

coffee_klout

Wrapper for the Klout API v2. Only V2 and JSON calls (don’t tell me you miss XML). Accepts an optional Redis client to cache Klout API responses, especially identities.

Based on node_klout by Christopher John.

The userId hash

Most Klout endpoints use the Klout ID to get information about a user. This Klout ID is not directly related to the user’s other networks identities.

When exposing those endpoints, coffee_klout allows a hash instead of a Klout ID. It internally makes an additional call to Klout to convert the identity.

For a Twitter handle, the userId hash would be:

{
  "twitter_screen_name": "XXXXX"
}

For a Twitter ID (unique numeric ID, different from the username):

{
  "twitter_id": "XXXXX"
}

For a Google+ ID:

{
  "google_plus_id": "XXXXX"
}

For a Facebook Third-Party-ID:

{
  "third_party_id": "XXXXX"
}

And for consistency with the Klout API:

{
  "klout_id": "XXXXX"
}

Usage

Instantiate a new instance with your Klout API key

var Klout = require('coffee_klout');
var klout = new Klout({ key: '<YOUR_V2_KEY>' });

Resolve an identity (useful to retrieve the Klout user ID)

klout.getKloutIdentity(userIdHash, function(error, identity){
  // returns a Klout identity as documented by the Klout API v2 docs
  console.log(identity.id);
});

The following methods are supported, where klout_response is an object as documented by the Klout API v2 docs and klout_id_or_user_id_hash is documented above:

klout.getUser(klout_id_or_user_id_hash, function(error, klout_response) {
	// Returns a user object
});

klout.getUserScore(klout_id_or_user_id_hash, function(error, klout_response) {
	// Returns a user's score object
});

klout.getUserTopics(klout_id_or_user_id_hash, function(error, klout_response) {
	// Returns an array of user topics
});

klout.getUserInfluence(klout_id_or_user_id_hash, function(error, klout_response) {
	// Returns a user's influence object
});

Cache support

Klout suggests to store indefinitely Klout IDs obtained after requesting Klout identities. Without such cache or storage all calls basically cost 2 API calls because one is used to convert a Twitter/Facebook/Google+ user to a Klout user.

Optional parameters can be passed to coffee_klout so it internally stores Klout identities. It can also optionally cache other API reponses.

coffee_klout currently supports only Redis clients:

var redis = new require('redis').createClient();

var Klout = require('coffee_klout');
var klout = new Klout({
  key: '<YOUR_V2_KEY>',
  cacheClient: redis,
  cacheLifetime: 3600 // seconds
});

If cacheClient is present, all identities will be stored to avoid resolving twice the same user ID. If cacheLifetime is present (integer, seconds), other API calls are cached for the time specified.

Keywords

klout

FAQs

Package last updated on 26 Sep 2012

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.