Real World Problem:
I have my app hosted on Heroku, who (to my knowledge) are unable to offer a solution for running a Headless (GUI-less) Browser - such as HTMLUnit - for generating HTML Snapshots for Googlebot to index my AJAX content.
My Proposed Solution:
If you haven't already, I suggest reading Google's Full Specification for Making AJAX Applications Crawlable.
Imagine I have:
- a Sinatra app hosted on Heroku on the domain
http://example.com
- the app has tabs along the top of the page TabA, TabB and TabC
- under each tab is SubTab1, SubTab2, SubTab3
- onload if the url is
http://example.com#!tab=TabA&subtab=SubTab3
then client-side Javascript takes thelocation.hash
and loads in TabA, SubTab3 content via AJAX.
Note: the Hash Bang (#!) is part of the google spec.
I would like to build a simple "web service" hosted on Google App Engine (GAE) that:
- Accepts a URL param e.g.
http://htmlsnapshot.appspot.com?url=http://example.com#!tab=TabA&subtab=SubTab3
(url param should be URLEncoded) - Runs HTMLUnit to open
http://example.com#!tab=TabA&subtab=SubTab3
and run the client-side javascript on the sever. - HTMLUnit returns the DOM once everything is complete (or something like 45 seconds has passed).
- The return content could be sent back via JSON/JSONP, or alternatively a URL is return to a file generated and stored on the google app engine server (for file based "cached" results)... open to suggestions here. If a URL to a file was returned then you could CURL to get the source code (aka a HTML Snapshot).
My http://example.com
app would need to manage the call to http://htmlsnapshot.appspot.com
... basically:
- Catch Googlebots call to
http://example.com/?_escaped_fragment_=tab=TabA%26subtab=SubTab3
(googlebot crawler escapes certain characters e.g. %26 = &). - Send request from the backend to
http://htmlsnapshot.appspot.com?url=http://example.com#!tab=TabA&subtab=SubTab3
(url param should be URLEncoded) - Render the returned HTML Snapshot to the frontend.
- Google Indexes the content and we rejoice!
I don't have any experience with Google App Engine or Java or HTMLUnit.
I might be able to figure it out... and will post my results if I do.
Otherwise I feel this is a VERY good opportunity for someone to write a kick-ass blog post that outlines a novices step-by-step guide to setting up a web service like this.
This will introduce more people to the excellent (and free!) Google App Engine. Also it will undoubtably encourage more people to adopt Google's specs for crawlable AJAX content... something we can all benefit from!
As Google's specification gains more acceptance the "hurdle" of setting up a Headless Browser is going to send many devs Googling for answers! Get in now with an answer for fame and glory! (edit: at the very least I will sing your praises).
Hit me up on twitter @i_chris_jacob
if you would like to discuss solutions.