I need the get url's of Google search results to a text file, so I used the Google API like this:
GwebSearchClient client = new GwebSearchClient("www.MySite.com"/* Enter the URL of your site here */);
IList<IWebResult> results = client.Search("diet", 32);
foreach (IWebResult result in results)
{
Console.WriteLine(result.Title);
Console.WriteLine(result.Url);
}
This gets me the url's , BUT the next thing is that I need it to be the search results of a USA IP address...(and I am not in the USA) I need to set my IP as if I'm in the USA so that the search results will be as if I was doing the search from USA Is there any way to get this done ?