TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Aug 2015 |
Maintained by Gabriel Handford.
Depends on: | |
TSTripleSec | >= 0 |
AFNetworking | >= 0 |
Mantle | >= 0 |
ObjectiveSugar | >= 0 |
GHKit | >= 0 |
NAChloride | >= 0 |
NACrypto | >= 0 |
Keybase.io API client for iOS/OSX.
platform :ios, "7.0"
pod "KBKeybase"
#import <KBKeybase/KBKeybase.h>
KBAPIClient *client = [[KBAPIClient alloc] initWithAPIHost:KBAPIKeybaseIOHost];
NSArray *userNames = @[@"gabrielh", @"chris", @"max"];
[_client usersPaginatedForKey:@"usernames" values:userNames fields:nil limit:10 success:^(NSArray *users, BOOL completed) {
// The **users** var is an array of KBUser.
// If paginating completed will be NO, and another callback will occur.
} failure:^(NSError *error) {
// There was an error
}];
More docs coming soon!