这是我的第一个Web API项目,所以我希望这个解决方案不是显而易见的。
// Contstruct the http request
NSString *urlString = [NSString stringWithFormat:@"http://%@:%@@twitter.com/statuses/user_timeline/%@.xml?count=5", username, password, friend];
NSURL *url = [NSURL URLWithString:urlString];
NSURLRequest *urlRequest = [NSURLRequest requestWithURL:url];
// Recive the data from the synchronous request
NSData *urlData;
urlData = [NSURLConnection sendSynchronousRequest:urlRequest returningResponse:nil error:nil];
从这个查询返回的结果看起来很好
除了
他们不反映我是否喜欢他们。所有tweet都返回“false”,即使认证用户已经将它们加上了星号。我相当有信心,我正在正确地进行身份验证,因为下面的代码确实需要正确地进行身份验证。