issues
search
seunGit
/
TIL-TodayILearned
🔥 Today I Learned
https://github.com/seunGit/TIL-TodayILearned/issues
1
stars
0
forks
source link
HTTP GET, POST
#58
Open
seunGit
opened
1 year ago
seunGit
commented
1 year ago
HTTP
HyperText Transfer Protocol의 약자
서버 - 클라이언트 모델을 따르면서 request/response 구조로 웹 상에서 정보를 주고받을 수 있는 프로토콜
TCP/IP 기반으로 작동
GET
데이터를 받기 위함
URL(URI) 형식으로 서버 측에 리소스를 요청한다.
POST
내용 및 파일 전송을 하기 위함
클라이언트에서 서버로 어떤 정보를 제출하기 위해 사용한다. Request 데이터를 HTTP Body에 담아 웹 서버로 전송한다.
HTTP
GET
POST