Google AJAX API – How do I get more than 4 Results?

I believe the only way to do that is to make multiple calls to the webservice specifying the ‘start’ parameter. http://ajax.googleapis.com/ajax/services/search/images?v=1.0&q=Apple+Cake&start=4 The start parameter is the 0-based index into the search results. So in this example, it would return images 4..7. You can also add the parameter rsz=[1-8]. The default value is 4. That’s why … Read more

Google push notifications – Unauthorized WebHook callback channel

You have to add your domain to the developers console. How to: Log in to the Google Developers Console Select your project Under ‘APIS & AUTH’ select ‘Push’ Click ‘Add domains’ Enter the needed domains (Only the domain is needed, not the whole notification url) Click the ‘Add domains’ button After that it should work … Read more