Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/shu223/klout-api-client-for-ios

Klout API Client for iOS.
https://github.com/shu223/klout-api-client-for-ios

Last synced: about 2 months ago
JSON representation

Klout API Client for iOS.

Awesome Lists containing this project

README

        

#Klout API Client for iOS

In Progress.

##Usage

###1. Add KloutAPIClient to your project

Add followings to your project.

- KloutAPIClient.h, KloutAPIClient.m
- [AFNetworking](https://github.com/AFNetworking/AFNetworking)

###2. Set API Key

You can create your API Key from [http://developer.klout.com/member/register](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