I am from the UK and I have written a C# application to use the API to
search Google but I would like to use the option 'pages from the UK'
like you can from google.co.uk.
How would I go about doing this via the API in C#?
My code is below:
---------------------------------------------------------------------------------------------------------------------------------------
searchresults = searchservice.doGoogleSearch(licensekey,
searchphrase, 1, 10, false, string.Empty, true, string.Empty,
string.Empty, string.Empty );
---------------------------------------------------------------------------------------------------------------------------------------
Many Thanks,
Al
One of the parameter for doGoogleSearch is "restrict". Its value
indicates country specific search.
For your case i guess it will be "countryUK".
Anyway refer the documentation.. u will find it.
-shet-