修復前
self.r =requests.post(url,params=params,headers=headers,timeout=Interface_Time_Out)
修復后
self.r =requests.post(url,data=params,headers=headers,timeout=Interface_Time_Out)
原因
http://httpbin.org/get?key1=value1&key2=value2
params關鍵字代表的是query string(從字符“?”開始的就是query string)
data關鍵字代表的是body中的form
json關鍵字代表的是body中的json