ObjectiveTumblr 0.1.3

ObjectiveTumblr 0.1.3

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Dec 2014

Maintained by Unclaimed.



 
Depends on:
MKNetworkKit>= 0
RSOAuthEngine>= 0
JTObjectMapping>= 0
JSONKit>= 0
 

  • By
  • Francis Chong

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.

Usage

  1. Initialize Tumblr API
tumblr = [[IGObjectiveTumblr alloc] initWithConsumerKey:yourConsumerKey secret:yourSecret];
tumblr.delegate = self;
  1. Login with xAuth
[tumblr authenticateWithUsername:userName password:password];
  1. (Upon login finished) Request user info:
[tumblr userInfo];
  1. Create a post:
IGTextPost* post = [[IGTextPost alloc] init];
post.markdown = YES;
post.title = @"Hello";
post.body  = @"**World**";
[tumblr createPostWithHostName:hostname post:post];

License

ObjectiveTumblr are available under the MIT license.

Contact

Francis Chong (@siuying)