Do REST API URLs have to look like this?

后端 未结 7 695
孤独总比滥情好
孤独总比滥情好 2020-12-28 18:36

Is it true that to implement a RESTful API, one has to implement a URL structure that looks like this

http://example.com/post/
http://example.com/post/123
         


        
7条回答
  •  有刺的猬
    2020-12-28 18:47

    The structure of your URLs doesn't matter. What does matter is that each URL identifies exactly 1 resource. Each resource can have multiple URLs that point to it but each URL should only point to 1 resource.

提交回复
热议问题