TWRequest を使用して Twitter にクエリを実行しています。URL の末尾に +exclude:retweets フィルターを追加する方法を知りたいです。これは私のコードです:
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
}];