标签: json rest api
在我的REST API中,我有一个/items/端点,它返回一个项目列表。
/items/
我的API用户可以请求不同格式的项目(json,xml,html)。
提供json响应的推荐方法是什么:
/items.json
/items/json
Content-Type
答案 0 :(得分:2)
根据Accept请求标头提供服务。这是一种名为content type negotiation.
Accept