Hello there,
I am fetching twitter feeds with hashtag but it is not fetching all feeds.I can see only one feed on my page. Is it true that hashtag will fetch only feeds posted within 7 days.
Below are the details of my API
resourceUrl =https://api.twitter.com/1.1/search/tweets.json
var requestParameters = new SortedDictionary<string, string>();
requestParameters.Add("count", count.ToString());
requestParameters.Add("q", search);
requestParameters.Add("include_entities", "true");
var response = GetResponse(resourceUrl, Method.GET, requestParameters);
return response;