Do REST API URLs have to look like this?

后端 未结 7 703
孤独总比滥情好
孤独总比滥情好 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:54

    Example URLs:

    GET http://del.icio.us/api/
    GET http://del.icio.us/api/peej/tags/
    GET http://del.icio.us/api/peej/tags/test
    DELETE http://del.icio.us/api/peej/bookmarks/[hash]
    

提交回复
热议问题