TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by Unclaimed.
Depends on: | |
MKNetworkKit | >= 0 |
RSOAuthEngine | >= 0 |
JTObjectMapping | >= 0 |
JSONKit | >= 0 |
Tumblr API Client for Objective-C with minimal features, based on Tumblr API v2 (OAuth).
We use this library for our software. If you need a specific feature, you probably want to add it yourself and send me a pull request.
tumblr = [[IGObjectiveTumblr alloc] initWithConsumerKey:yourConsumerKey secret:yourSecret];
tumblr.delegate = self;
[tumblr authenticateWithUsername:userName password:password];
[tumblr userInfo];
IGTextPost* post = [[IGTextPost alloc] init];
post.markdown = YES;
post.title = @"Hello";
post.body = @"**World**";
[tumblr createPostWithHostName:hostname post:post];
ObjectiveTumblr are available under the MIT license.
Francis Chong (@siuying)