简体   繁体   中英

Restful api and operations like search and invite

Restful api should not use verb in path, but how to design api for:

  • search products
  • filter products
  • invite friends

Always ask yourself:

What are my Resources?

  • List products: GET /api/products
  • Filter products: GET /api/products?status={{status}}
  • Invite friends: POST /api/invitation

Note that the path (REST Resource) is a noun ( invitation ), not a verb ( invite ).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM