Self-Improvement
python requests get 파라미터, post 데이터 값의 순서가 변경될시에 튜플로 본문
1 | resp=requests.post(url, data={'aa':'aa', 'bb':'bb','cc':'cc'}) | cs |
post 메소드의 데이터 순서가 변경되서 보내어진다.!!
이때 튜플형식으로 변환해주면 순서에 맞게 전송이 이루어진다.
1 | resp=requests.post(url, data=(('aa','aa'), (bb','bb'),('cc','cc')) | cs |
'프로그래밍 > Python' 카테고리의 다른 글
socket모듈의 connect_ex 사용법 (0) | 2019.01.18 |
---|---|
shodan API - requests 조합으로 Xiongmai CCTV 취약점 Python 자동화 코드 (0) | 2019.01.10 |
shodan API로 최근 이슈된 취약점 검색 Python 코드 (0) | 2019.01.10 |
python의 argparser 모듈 기본적인 사용법 (0) | 2019.01.10 |
Python의 requests Base64 Dictionary 코드 (0) | 2019.01.09 |