I'm toying around with a little web app which lets people create queues of URIs (eg, "stuff to read for work", "programming languages to learn", etc), and I'm trying to decide on a URL scheme.
One of the ideas I'm toying with is using a URI like /queue/$queue_name
to represent a user's queue (where the user's name would come from a cookie), rather than the more standard /queue/$user_name/$queue_name
.
I like it because it's simple and I haven't seen it used anywhere… But I'm worried that, instead of being brilliant and innovative, I'm being stupid an naive.
So, is /queue/$queue_name
a workable scheme? Are there any problems with it I haven't considered?