파이썬 Requests 사용 – JWT token 예제
코드를 참고하면 아주 쉽죠!!
request.headers 에 “Authorization” 키워드에 베어러토큰 값을 넣어주고,
헤더를 포함해서 보내면 됩니다.
참고사이트는 아래 링크 확인..
https://bobbyhadz.com/blog/make-post-request-with-bearer-token-using-requests-in-python
import requests
url = 'https://jsonplaceholder.typicode.com/users'
data = {'id': 1, 'name': 'bobby hadz'}
headers = {
'Authorization': 'Bearer YOUR_JWT_TOKEN',
}
response = requests.post(
url,
data=data,
headers=headers,
timeout=30
)
print(response.status_code) # 👉️ 201
result = response.json()
print(result) # 👉️ {'id': 11, 'name': 'bobby hadz'}