My RESTful API always has authentication so all calls are authenticated for a particular user.
Which is a better RESTful design of URLs over the HTTP protocol? Remember that the user id 3 is already authenticated via basic http auth/digest.
http://server.com/users/3/widgets/ (Returns all widgets for user id 3)
http://server.com/users/3/widgets/13 (Returns widget id 13)
or:
http://server.com/widgets/ (Returns all widgets for user id 3)
http://server.com//widgets/13 (Returns widget id 13)
Is it better to always have a unique URL like http://server.com/users/3/widgets/ even know only user #3 will be the only one accessing it? Is it redundant to re-specify /user/3 on every call like http://server.com/users/3/widgets/