If I have an array containing a number of urls:
['http://www.abc.com', ..., 'http://www.xyz.com']
for each url, I would like to fetch the html with the following query:
select * from html where url=[url from array]
Question: do I need to make request to yql for every single url in the array or is there a way to send a single request to yql with all the urls and receive a bulk response ?
You could use the following query:
Alternatively, you could also use yql.query.multi YQL table which allows you to combine different YQL queries.eg: