Skip to content

Latest commit

 

History

History
43 lines (26 loc) · 753 Bytes

File metadata and controls

43 lines (26 loc) · 753 Bytes

#Klout API Client for iOS

In Progress.

##Usage

###1. Add KloutAPIClient to your project

Add followings to your project.

###2. Set API Key

You can create your API Key from http://developer.klout.com/member/register.

#import "KloutAPIClient.h"
[KloutAPIClient setAPIKey:@"YOUR API KEY"];

##Examples

  • Retrieve a user's Klout Score and deltas for a Twitter screen_name.
[KloutAPIClient scoreWithTwitterScreenName:@"shu223"
                                   handler:
 ^(NSDictionary *result, NSError *error) {
     
     // Do something
 }];

##License

MIT License