Rest Standard: Path parameters or Request parameters

前端 未结 6 1526
孤独总比滥情好
孤独总比滥情好 2020-11-29 23:53

I am creating a new REST service.

What is the standard for passing parameters to REST services. From different REST implementations in Java, you can configure param

6条回答
  •  爱一瞬间的悲伤
    2020-11-30 00:13

    The first variation is a little cleaner, and allows you to reserve the request parameters for things like sort order and page, as in

    http://www.rest.services.com/items/b?sort=ascending;page=6
    

提交回复
热议问题