How would I write a route in Asp.Net mvc to handle a url like this one for a Facebook page:
http://graph.facebook.com/http://codedojoboise.com/
I tried this route but get a 400 Bad Request error when I try to run it.
routes.MapRoute(
"LinkPreview",
"LinkPreview/{path}",
new {controller = "LinkPreview", action = "Get"});