在我的应用程序中,我想通过 tumblr api 共享文本。
我只是想要一些提示,以便我可以准确了解如何在 tumblr 上共享文本。
谢谢
您可以使用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);
}
}];