|
@@ -93,8 +93,8 @@ def make_encrypted_post_request(log, url: str, request_data: dict, extra_headers
|
|
|
encrypted_body = CryptoHelper.encrypt_request_data(request_data)
|
|
encrypted_body = CryptoHelper.encrypt_request_data(request_data)
|
|
|
# print(request_headers)
|
|
# print(request_headers)
|
|
|
# response = requests.post(url, headers=request_headers, json=encrypted_body, timeout=22, proxies=get_proxys(log))
|
|
# response = requests.post(url, headers=request_headers, json=encrypted_body, timeout=22, proxies=get_proxys(log))
|
|
|
- # response = requests.post(url, headers=request_headers, json=encrypted_body, timeout=(5, 30), proxies=get_proxys(log))
|
|
|
|
|
- response = requests.post(url, headers=request_headers, json=encrypted_body, timeout=(5, 30))
|
|
|
|
|
|
|
+ response = requests.post(url, headers=request_headers, json=encrypted_body, timeout=(5, 30), proxies=get_proxys(log))
|
|
|
|
|
+ # response = requests.post(url, headers=request_headers, json=encrypted_body, timeout=(5, 30))
|
|
|
# response.raise_for_status()
|
|
# response.raise_for_status()
|
|
|
|
|
|
|
|
if response.status_code == 200:
|
|
if response.status_code == 200:
|