I'm using TWRequest to query twitter. I would like to know how to add +exclude:retweets filters at the end of the URL. This is my code:
NSString *searchURL = [NSString stringWithFormat:@"http://search.twitter.com/search.json"];
NSMutableDictionary *dict_req;
dict_req = [NSMutableDictionary dictionaryWithObjectsAndKeys:@"50", @"rpp", @"true", @"include_entities", searchParams, @"q", nil];
TWRequest *request = [[TWRequest alloc] initWithURL:[NSURL URLWithString:searchURL]
parameters:dict_req requestMethod:TWRequestMethodGET];
[request performRequestWithHandler:^(NSData *responseData, NSHTTPURLResponse *urlResponse, NSError *error)
{
//results
}];