Quantcast
Channel: Tweetinvi a friendly Twitter C# library
Viewing all articles
Browse latest Browse all 4126

New Post: Beginner - Help

$
0
0
Cool. :)
var param = Search.GenerateTweetSearchParameter("#poplave");
param.MaxId = -1;
param.MaximumNumberOfResults = 100;
var results = Search.SearchTweets(param);

param.MaxId = results.LastOrDefault().Id - 1;
var newResults = Search.SearchTweets(param);
You can use the maxid to search for older tweets like this. It's best if you can create a function that takes the maxid and recursively calls itself until you've the desired number of results. I think the search is limited to 3200 tweets for a given keyword.

Also, I am not sure, maybe linvi has taken care of this internally in tweetinvi. Try setting MaximumNumberOfResults to like 500. Maybe it'll work without hacking around.

About your status not getting updated. Make sure you're checking the right account. :P

@flexair You've a reply. :)

imlokesh

Viewing all articles
Browse latest Browse all 4126

Trending Articles