Twitter API: Get latest Tweets for an keyword including GEO - Cords?
Is there any way to get the Cords of the "T开发者_StackOverflow社区witterer" when using Twitter Search Api? If i understand the API Doc right, is there no GEO Result in their XML / JSON return object?
You can get tweets against coordinates by using following code
var search = FluentTwitter.CreateRequest().Search().Query()
.Within(searchMiles).Of(geoLocation).AsJson();
精彩评论