Пример #1
0
        public string GetPlaceTrendsAt(long woeid)
        {
            string query = _trendsQueryGenerator.GetPlaceTrendsAtQuery(woeid);

            return(_twitterAccessor.ExecuteJsonGETQuery(query));
        }
Пример #2
0
        public IPlaceTrends GetPlaceTrendsAt(long woeid)
        {
            string query = _trendsQueryGenerator.GetPlaceTrendsAtQuery(woeid);

            return(_twitterAccessor.ExecuteGETQuery <IPlaceTrends[]>(query)[0]);
        }