在我的应用程序中,我想通过tumblr api分享文本。
我只想提供一些暗示,以便我可以准确了解如何在tumblr上分享文字。
由于
答案 0 :(得分:0)
您可以使用https://github.com/tumblr/TMTumblrSDK#authentication
我使用以下代码与tumblr共享文本
NSArray* paramsKeys = [[NSArray alloc] initWithObjects:
@"title",
@"body",
nil];
NSArray* paramsVals = [[NSArray alloc] initWithObjects:
@"Testing",
@"HEllo Posting it to Tumblr",
nil];
NSDictionary *paramsDict = [[NSDictionary alloc]initWithObjects:paramsVals forKeys:paramsKeys];
[[TMAPIClient sharedInstance]text:@"blogname" parameters:paramsDict callback:^(id response, NSError *error)
{
if(!error)
{
NSDictionary *dashboard = response;
NSLog(@"%@",dashboard);
}
}];