Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an app that generates web-pages as data URIs. These data URIs can be really long. I have a page that has a Data URI that is 103,828 characters long, for instance. Everything about the app works and it's no problem, it's just slightly painful to pass around urls that are 100,000 chars long :P, so I was had the wild idea of trying to use a URL shortener to shorten these URLs.

Seems like someone has written about this: http://softwareas.com/the-url-shortener-as-a-cloud-database . The author mentions character limits for popular url shortener services, and the highest seems to be tinyurl, at about 65,000 chars. Am just wondering if anyone knows of an existing solution / service that would allow shortening of such long urls (over 100,000 chars)?

Am tempted to implement my own shortener, but would like to avoid it if something exists that would allow for this.

share|improve this question
2  
Curious about what you're using this for; if it is something commercial, I'd avoid relying on any third-party url-shortener to do the job. It would be relatively easy to hash each URI and use that hash as your new URI, but you'd then have to store the original data anyway, which seems to defeat the point of your URI-creator anyway. – Chris Gregg Jul 10 '11 at 3:08
Nah, not commercial, if something works-for-now, that's good for me. In case you're curious, my code is here: code.pad.ma/padmaPlaylist . An example of a really long data uri: is.gd/QuFm8S . My use-case is a javascript only app (that can be run without a web-server) that needs to generate an html file on the fly for the user to download. Ideally, I would use content-disposition: attachment to download, but this seems to not work, so the url opens in a new window and the user can Save As the html file generated (via this data-uri) to use later (a playlist of videos). – sanjayb Jul 10 '11 at 15:59

1 Answer

up vote 1 down vote accepted

This URL shortener can redirect 250000 chars long URL-s: http://rx.hu

share|improve this answer
I solved my problem by implementing my own private shortener for this use-case, but good to know - thanks! – sanjayb Aug 9 '12 at 20:14
this doesn't work on data uris, such as data:image/png;base64,....... – Tyler Gillies Dec 21 '12 at 21:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.