Twitter Getting information about a place

Getting information about a place

To get information about a place, you can do as below:

// Make the call to the API
TwitterPlaceResponse response = service.Geo.GetPlace("bccfd337700d65b8");

// Iterate through the tweets
Console.WriteLine(response.Body.FullName);
Console.WriteLine(response.Body.Type);
Console.WriteLine(response.Body.Id);
Console.WriteLine(response.Body.Name);
Console.WriteLine();