I have two JSON objects created through the Google search API. The URL of these objects can be found below.
http://ajax.googleapis.com/ajax/services/search/web?v=1.0&q=hello%20world&rsz=large http://ajax.googleapis.com/ajax/services/search/web?v=1.0&q = hello% 20world & rsz = large & start = 8
As you can see, the first URL returns the first eight results, and the second returns the next eight. Instead of checking these results separately, I would like to programmatically combine them into a single JSON object and pass them as the first sixteen results.
I tried to do this with a few extremely simple JSON objects, but what Google returns is still a bit above my head, so I hope to help a bit with that.
As far as I know, this does not contradict the Google Terms of Service to combine two objects into one, only they always go through two results (what they will be). Some friends pointed me towards automated tools capable of doing such things, but I have not yet found such a tool.
I am currently working in ASP.NET, so the C # or VB.NET code is wonderful, but I am a bit independent of the language, so any help in any language would be greatly appreciated.
Can someone provide any help and / or advice on doing such a thing?
EDIT: These results will eventually be stored in the database, so any server-side methods will be fantastic, even if that means they are put right in the table for later work.
Mike b
source share