요청-HTTP 요청 헤더
이전 장에서 요청을하고 응답을받는 방법을 살펴 보았습니다. 이 장에서는 URL의 헤더 섹션에 대해 조금 더 살펴볼 것입니다. 그래서 우리는 다음을 살펴볼 것입니다.
- 요청 헤더 이해
- 맞춤 헤더
- 응답 헤더
요청 헤더 이해
브라우저에서 URL을 누르고 검사하고 개발자 도구 네트워크 탭에서 확인하십시오.
응답 헤더, 요청 헤더, 페이로드 등을 받게됩니다.
예를 들어, 다음 URL을 고려하십시오.
https://jsonplaceholder.typicode.com/users
다음과 같이 헤더 세부 정보를 얻을 수 있습니다.
예
import requests
getdata = requests.get('https://jsonplaceholder.typicode.com/users',
stream = True)
print(getdata.headers)
산출
E:\prequests>python makeRequest.py
{'Date': 'Sat, 30 Nov 2019 05:15:00 GMT', 'Content-Type': 'application/json;
charset=utf-8', 'Transfer-Encoding': 'chunked', 'Connection': 'keep-alive',
'Set-Cookie': '__cfduid=d2b84ccf43c40e18b95122b0b49f5cf091575090900; expires=Mon, 30-De
c-19 05:15:00 GMT; path=/; domain=.typicode.com; HttpOnly', 'X-Powered-By':
'Express', 'Vary': 'Origin, Accept-Encoding', 'Access-Control-Allow-Credentials': 't
rue', 'Cache-Control': 'max-age=14400', 'Pragma': 'no-cache', 'Expires': '-1', '
X-Content-Type-Options': 'nosniff', 'Etag': 'W/"160d-1eMSsxeJRfnVLRBmYJSbCiJZ1qQ
"', 'Content-Encoding': 'gzip', 'Via': '1.1 vegur', 'CF-Cache-Status': 'HIT',
'Age': '2271', 'Expect-CT': 'max-age=604800,
report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"', 'Server': 'cloudflare', 'CF-RAY': '53da574f
f99fc331-SIN'}
http 헤더를 읽으려면 다음과 같이 할 수 있습니다.
getdata.headers["Content-Encoding"] // gzip
맞춤 헤더
아래와 같이 호출되는 URL에 헤더를 보낼 수도 있습니다.
예
import requests
headers = {'x-user': 'test123'}
getdata = requests.get('https://jsonplaceholder.typicode.com/users',
headers=headers)
전달 된 헤더는 문자열, 바이트 문자열 또는 유니 코드 형식이어야합니다. 요청의 동작은 전달 된 사용자 지정 헤더에 따라 변경되지 않습니다.
응답 헤더
브라우저 개발자 도구, 네트워크 탭에서 URL을 확인할 때 응답 헤더는 다음과 같습니다.
요청 모듈에서 헤더의 세부 사항을 얻으려면 사용하십시오. Response.headers는 다음과 같습니다-
예
import requests
getdata = requests.get('https://jsonplaceholder.typicode.com/users')
print(getdata.headers)
산출
E:\prequests>python makeRequest.py
{'Date': 'Sat, 30 Nov 2019 06:08:10 GMT', 'Content-Type': 'application/json;
charset=utf-8', 'Transfer-Encoding': 'chunked', 'Connection': 'keep-alive',
'Set-Cookie': '__cfduid=de1158f1a5116f3754c2c353055694e0d1575094090; expires=Mon,
30-Dec-19 06:08:10 GMT; path=/; domain=.typicode.com; HttpOnly', 'X-Powered-By':
'Express', 'Vary': 'Origin, Accept-Encoding', 'Access-Control-Allow-Credentials': 't
rue', 'Cache-Control': 'max-age=14400', 'Pragma': 'no-cache', 'Expires': '-1', '
X-Content-Type-Options': 'nosniff', 'Etag': 'W/"160d-1eMSsxeJRfnVLRBmYJSbCiJZ1qQ
"', 'Content-Encoding': 'gzip', 'Via': '1.1 vegur', 'CF-Cache-Status': 'HIT',
'Age': '5461', 'Expect-CT': 'max-age=604800, report-uri="https://report-uri.cloudf
lare.com/cdn-cgi/beacon/expect-ct"', 'Server': 'cloudflare', 'CF-RAY': '53daa52f
3b7ec395-SIN'}
다음과 같이 원하는 특정 헤더를 얻을 수 있습니다.
print(getdata.headers["Expect-CT"])
산출
max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/exp
ect-ct
You can also get the header details by using the get() method.
print(getdata.headers.get("Expect-CT"))
산출
max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/exp
ect-ct