I m trying to search google programatically from C#.Net.
I have generated the API key as the document says & also tried with the custom search engine that I have created, but I keep getting the error "403 forbidden".
Here is the code:
string sURL = null;
sURL = "https://www.googleapis.com/customsearch/v1?key=AIzaSyAFneuelnCEoZt0CqbcnH7vv1qsn9fO82E&cx=013036536707430787589:_pqjad5hr1a&q=lectures";
WebRequest request = WebRequest.Create(sURL); //tried HTTP web request & response too..
WebResponse response = request.GetResponse();
Stream resStream = response.GetResponseStream();
return;
Thanks.