1
paulw54jrn 2016-09-05 18:36:07 +08:00
这个缩进让别人很难做啊..
网页也打不开, 被逆向墙了? |
2
binux 2016-09-05 18:48:21 +08:00
myRep=requests.post("https://4g.coldice.me/itk/rpc",headers=myHder1,verify=False,json=myPost)
|
3
aeshfawre 2016-09-05 18:50:11 +08:00
楼上正解。
|
4
matrix67 2016-09-05 18:53:53 +08:00 via Android
json 没 dump
|
6
binux 2016-09-05 19:17:55 +08:00
@icy20088
Error parsing JSON: malformed JSON string at character offset 0 (before \\"method=PmData.getDat...\\") |
7
Chyroc 2016-09-05 22:11:29 +08:00
|
8
aeshfawre 2016-09-05 22:39:19 +08:00
@Chyroc 区别在于你 post 给服务器的数据格式不同,
data 是这样 user=aaa&pass=ffff json 是这样{"user":"aaa","pass":"fff"} 服务器那边解析是按他写前端的时候约定好的,后端按哪种格式解析你 post 过来的数据,你提交的数据如果和约定不同,那会解析失败的。 |