How to use TWRequest for both iOS 5 for getting Twitter User Details,
TWRequest was working earlier and I was using in this way
NSURL *url = [NSURL URLWithString:@"https://api.twitter.com/1/users/show.json"];
NSDictionary *params = [NSDictionary dictionaryWithObjectsAndKeys:twittername,@"screen_name",nil];
request = [[TWRequest alloc] initWithURL:url
parameters:params
requestMethod:TWRequestMethodGET];
But recently, Twitter closed the api version 1 and implemented version 1.1, and Presently The above logic is not working in iOS 5, due to the API deprecation may be...
I am using SLRequest for iOS 6 it is working perfect, But I would like to know How can we get Twitter user details in iOS 5
Try this :