Hi,
Sometimes Search.SearchTweets(searchParameter) returns no result control wont come out of SearchTweets block. I checked in fiddler those request returns -1 in packet body. How to handle this scenario?
my program:-
int limit = RateLimit.GetCurrentCredentialsRateLimits().SearchTweetsLimit.Remaining;
for (int i = 0; i < limit; I++)
{
var tweets =Search.SearchTweets(searchParameter);
//some logic
}
Sometimes Search.SearchTweets(searchParameter) returns no result control wont come out of SearchTweets block. I checked in fiddler those request returns -1 in packet body. How to handle this scenario?
my program:-
int limit = RateLimit.GetCurrentCredentialsRateLimits().SearchTweetsLimit.Remaining;
for (int i = 0; i < limit; I++)
{
var tweets =Search.SearchTweets(searchParameter);
//some logic
}