Restful api 以及搜索和邀请等操作

Restful api and operations like search and invite

Restful api路径中不应该使用动词,但是如何设计api for:

经常问自己:

What are my Resources?

  • 列出产品:GET /api/products
  • 过滤产品:GET /api/products?status={{status}}
  • 邀请好友:POST /api/invitation

请注意,路径(REST 资源)是名词 (invitation),而不是动词 (invite)。