Python:如何在使用特定端口时向服务器发送post请求

时间:2014-10-23 09:07:17

标签: python python-requests

我需要向服务器发送一个帖子请求,代码如下:

import requests    
response = requests.post('https://example.com:9121',
    data=reg_data.encode('utf-8'),
    headers=headers, params=params, verify=False)  

回复是:

[Errno 8] _ssl.c:510: EOF occurred in violation of protocol

但删除指定的端口时,如:

response = requests.post('https://example.com',
    data=reg_data.encode('utf-8'), headers=headers, params=params, verify=False)

回复是:

Response [200]

我想知道为什么我不能使用指定的端口发送帖子到这个我需要的地方。我可以在java Application中处理它,我不知道如何在Python中处理它。

0 个答案:

没有答案