我們正在實現一個基於REST的GET實現,它將響應負載中的多個URI的列表返回給客戶端。稍後,客戶端使用這些URI中的每一個,然後在每個單獨的URI上執行GET以獲取單獨的有效負載。只有在通過POST創建新資源之後,纔會在Location或Content-Location標頭中返回URI。GET響應中包含URL
以下是否違反REST標準的實施?
**Initial Call**
GET /AllURIs
HTTP 200 OK
content-type:applicaton/xml
<URIs>
<URI> /somelocation/1 </URI>
<URI> /somelocation/2 </URI>
<URI> /somelocation/3 </URI>
<URI> /somelocation/4 </URI>
<URI> /somelocation/5 </URI>
<URIs>
**Later Call**
GET /somelocation/1
<NewObject>
.........
</NewObject>