Reputation: 79103
One of the many things that's been lacking from my scraper service that I set up last week are pretty URLs. Right now the user parameter is being passed into the script with ?u=, which is a symptom of a lazy hack (which the script admittedly is). However, I've been thinking about redoing it and I'd like to get some feedback on the options available. Right now there are two pages, update and chart, that provide information to the user. Here are the two possibilities that I came up with. "1234" is the user ID number. For technical reasons the user name unfortunately cannot be used:
or
Option #1, conceptually, is calling update with the user ID. Option #2 is providing a verb to operate on a user ID.
From a consistency standpoint, which makes more sense?
Another option mentioned is
This provides room for pages not relating to a specific user. i.e.
Upvotes: 3
Views: 1173
Reputation: 5220
If there's a way of listing users I'd introduce a users segment:
http://< tld >/users/ <--- user list
http://< tld >/users/1234/ <--- user profile, use overloaded POST on this to update.
http://< tld >/users/1234/chart/ <--- user chart
If you can only see your own details, ie users are invisible to each other, you don't need the user id since you can infer it from the session, in which case:
http://< tld >/user/ <--- user profile, use overloaded POST on this to update.
http://< tld >/user/chart/ <--- user chart
Upvotes: 0
Reputation:
If you go with this scheme it becomes simple to stop (well-behaved) robots from spidering your site:
http://< tld >/update/1234
http://< tld >/chart/1234
This is because you could setup a /robots.txt file to contain:
Disallow /update/
Disallow /chart/
To me that is a nice bonus which is often overlooked.
Upvotes: 6
Reputation: 11617
I just replied to the question "How do you structure your URL routes?" with my opinions about making URLs RESTful, hackable and user friendly. I think it would be better to link than to write something similar in this question, hence the link.
Upvotes: 1
Reputation: 2731
Option #1 matches the common ASP.NET MVC examples. Some of the examples at Model View Controller model have the form {controller}/{action}/{id}. The .NET 3.5 quickstart on routing has a table showing some valid route patterns:
Route definition -- Example of matching URL
{controller}/{action}/{id} -- /Products/show/beverages
{table}/Details.aspx -- /Products/Details.aspx
blog/{action}/{entry} -- /blog/show/123
{reporttype}/{year}/{month}/{day} -- /sales/2008/1/5
{locale}/{action}
-- /en-US/show
{language}-{country}/{action}
-- /en-US/show
Upvotes: 5
Reputation: 1821
Convention says object/verb/ID, so it should be:
http://< tld >/user/update/1234
(I just noticed that matches your updated question :)
So yes, #3 is the best choice.
This supports non-user operations as you mention (stats/), as well as multi-user operations:
http://< tld >/user/list/
Upvotes: 0
Reputation: 48546
Go with the latter; URLs are meant to be hierarchical (or, at least, users read them that way by analogy to local directory paths). The focus here is on different views of a specific user, so "user" is the more general concept and should appear first.
Upvotes: 1
Reputation: 1093
I'd be gently inclined toward leading with the userid -- option #2 -- since (what exists of) the directory structure is two different functions over a user's data. It's the user's chart, and the user's update.
It's a pretty minor point, though, without knowing if there's plans for significant expansion of the functionality of this thing.
Upvotes: 5
Reputation: 4671
I agree from a context standpoint, the application followed by the parameters make much more sense to me than the surrogate key for an item followed by the context of what the item is. Ultimately I'd suggest which ever is more natural for you to program.
Upvotes: 0
Reputation: 54854
I personally like this style, because it keeps the user the same, but gives you specific insight in to them.
If you went the other way I would expect to be able to see everything under /update or /chart and then narrow in by user.
Upvotes: 4