I followed the example given here: https://dev.twitter.com/docs/ios/making-api-requests-slrequest.
This example only shows how to get the timeline of the user. Instead I wanna use the search api such that given the longitude and lantitude pair plus a range, it could return tweets within that area.
However, I’m not quite clear about the param variable used in that example. I tried the search api with the param variable, an error occurs. I guess there must be something wrong with param. Could anyone please give me a hint on it?
NSDictionary *params = @{@“screen_name” : @“user_name”,
@“include_rts” : @“0”,
@“trim_user” : @“1”,
@“count” : @“5”};