"REST API"의 두 판 사이의 차이

(REST API 설계 문서로 넘겨주기)
 
1번째 줄: 1번째 줄:
#넘겨주기 [[REST API 설계]]
==개요==
;REST API
 
{| class="wikitable"
|+ HTTP methods
! Uniform Resource Locator (URL)  !! GET  !! PUT !! PATCH !! POST !! DELETE
|-
! 콜렉션 (예: <code><nowiki>https://api.example.com/resources/</nowiki></code>)
| '''목록조회(List)'''
| '''교체(Replace)'''
| (잘 사용안함)
| '''생성(Create)'''
| '''삭제(Delete)'''
|-
! 원소 (예: <code><nowiki>https://api.example.com/resources/item17</nowiki></code>)
| '''조회(Retrieve)'''
| '''교체(Replace)'''
| '''갱신(Update)'''
| (잘 사용안함)
| '''삭제(Delete)'''
|}
 
==같이 보기==
* [[REST API 설계]]
 
[[분류: API]]

2018년 8월 21일 (화) 16:35 판

1 개요

REST API
HTTP methods
Uniform Resource Locator (URL) GET PUT PATCH POST DELETE
콜렉션 (예: https://api.example.com/resources/) 목록조회(List) 교체(Replace) (잘 사용안함) 생성(Create) 삭제(Delete)
원소 (예: https://api.example.com/resources/item17) 조회(Retrieve) 교체(Replace) 갱신(Update) (잘 사용안함) 삭제(Delete)

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}