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.

Possible Duplicate:
REST api versioning (only version the representation, not the resource itself)

Hello,

So I need to version my restful services. I understand that many place v1 or something similar in the URL to denote use of the "first version" of a resource. My question is, where in the URL should the versioning portion go?

Most people do the following:

http://myDomain.com/v1/pictures/etc

However, I'm thinking that the following makes more sense:

http://myDomain.com/pictures/v1/etc

This denotes that you want to use version 1 of the "pictures" resource, however you could use a different version of other resources. What are people's thoughts on this?

Thanks

share|improve this question
you are right... these other questions have quite a bit of good info in them. – Polaris878 Aug 13 '10 at 2:44

marked as duplicate by Darrel Miller, Tuzo, Marc Novakowski, McDowell, Graviton Aug 16 '10 at 15:11

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

It doesn't matter. If it's "restful", the client can discover the location by following links (be it in hypertext or in headers).

share|improve this answer

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