Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/shu223/klout-api-client-for-ios
- Owner: shu223
- Created: 2013-09-08T08:08:51.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-09-08T08:22:08.000Z (over 11 years ago)
- Last Synced: 2024-05-01T20:40:25.404Z (8 months ago)
- Language: Objective-C
- Size: 191 KB
- Stars: 5
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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