I would like to ask a design question about a REST HTTP API that I am exposing.
I have to sometimes access a widget with ID 3:
http://ourserver/service/widgets/3
Get widget with ID 3
But I also sometimes need to access a widget by it's SKU#.
Is it wrong to expose the same resource via 2 URLS?
BUt I need my clients to get a widget by either it's ID or it's SKU.
Which of the following is better?
http://ourserver/service/widgets/bysku/skyunumberhttp://ourserver/service/widgets/skyunumber?idtype=sku
Again to repeat, I need my clients to be able to look up a widget in 2 different ways. What is the best way to design the URLs?