Return a list of URLs to search on Google

I wonder what the easiest way to return a list / array of URLs from a Google search result. I would use JS and Google API

What i want to do is

Google a term like "dogs"

Have an array / list of urls related to this search: domainurl1 domainurl2

etc..

+6
source share
1 answer
options[google.search.Search.RESTRICT_EXTENDED_ARGS] = { 'cr': 'countryIT', 'sort': 'date' }; var customSearchControl = new google.search.CustomSearchControl(id, options); 

Here is the syntax for getting a list of returned url

 google.search.CustomSearchControl.CustomSearch Control(cseId, opt_options); 

You will receive detailed information at this link: Return URL list

+1
source

All Articles