0

我想通过单击按钮来关注 Twitter 用户。我使用了使用 oauth 的 share kit follow me 方法。但我总是收到这个错误。

{"error":"无法使用 OAuth 进行身份验证。","re​​quest":"/1/friendships/create/priyankav89.json"}

然后我尝试自己实现它

NSURL *url = [NSURL URLWithString:@"https://api.twitter.com/1/friendships/create.json"];
NSMutableDictionary *dict=[[NSMutableDictionary alloc]init];
[dict setObject:@"871252998" forKey:@"user_id"];
[dict setObject:@"true" forKey:@"follow"];
[dict setObject:@"KXL0jFLJY6RI4lszOz8r5w" forKey:@"consumer"];
NSString *jsonRepresentation=[dict JSONString];
NSLog(@"jsonRepresentation = %@",jsonRepresentation);
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url
                                                       cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:3];
NSData *postData=[NSData dataWithBytes:jsonRepresentation.UTF8String length:[jsonRepresentation length]];
[request setHTTPMethod:@"POST"];
[request setValue:@"application/json" forHTTPHeaderField:@"Accept"];
[request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
[request setValue:[NSString stringWithFormat:@"%d", [postData length]] forHTTPHeaderField:@"Content-Length"];
[request setHTTPBody:postData];
NSURLResponse *response;
NSError *error=nil;
NSData *responseData=[NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
NSLog(@"respon = %s",responseData.bytes);

我仍然遇到同样的错误。

我搜索了很多。还是没用。我不想在 UIWebView 或 safari 中加载 url。我想支持来自 ios4 的应用程序。所以无法使用ios5内置的推特应用。

4

2 回答 2

0

我发现了问题。在 share kit follow me 方法中,他们在关注之前没有调用授权方法。所以我们想在登录前调用授权并保存访问令牌。

于 2012-10-11T04:24:03.537 回答
0

假设您知道如何使用集成到 iOS 的 twitter 发推文,您可以简单地发推文“关注”

于 2013-01-23T05:14:44.463 回答