测试已测试 | ✗ |
语言语言 | Obj-CObjective C |
许可证 | MIT |
发布最新发布 | 2014年12月 |
由 无人认领 维护。
依赖项 | |
MKNetworkKit | >= 0 |
RSOAuthEngine | >= 0 |
JTObjectMapping | >= 0 |
JSONKit | >= 0 |
基于 Tumblr API v2 (OAuth) 的最小功能 Objective-C Tumblr API 客户端。
我们使用这个库来开发我们的软件。如果您需要特定的功能,可能需要自行添加并发送 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 在 MIT 许可证 下提供。
Francis Chong (@siuying)