Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Twitterizer.TwitterSearch.Search not returning as many tweets as it should #97

Open
estockwell-alpert opened this issue Nov 30, 2016 · 1 comment

Comments

@estockwell-alpert
Copy link

I'm using the Twitter API to retrieve tweets with hashtags. My query is "from:Bayer4CropsUS #citrusmatters". If you search this in twitter, you'll get a large number of results. However, in my code I'm only getting one result returned.

`SearchOptions searchOptions = new SearchOptions { NumberPerPage = pageSize };

OAuthTokens tokens = new OAuthTokens()
{
AccessToken = "xxx",
AccessTokenSecret = "xxx",
ConsumerKey = "xxx",
ConsumerSecret = "xxx"
};

TwitterResponse twitterResponse = Twitterizer.TwitterSearch.Search(tokens, "from:Bayer4CropsUS #citrusmatters", searchOptions);`

My pageSize is set to 3. I tried doing the search with null searchOptions

Twitterizer.TwitterSearch.Search(tokens, "from:Bayer4CropsUS #citrusmatters", null);

This returned 2 tweets instead of 1, which is still wrong.

@estockwell-alpert
Copy link
Author

any updates on this?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant