环境:

: python3

后台:java


触发环境 使用 requests post提交数据时,报错如下:

Java异常:com.alibaba.fastjson.JSONException:syntaxerror,pos1,json:check=Y&amp**************调用com.alibaba.fastjson.JSONObject.parseObject期间。********************************Calledfrom:WEBLIB_MOB_INF.GST_LOGIN.FieldFormulaName:IScript_LoginStatement:3


期间 各种度娘,谷歌 帮忙 找到原因, json格式错误


使用post提交json数据应该 使用json处理

importrequestsimportjsonurl="http://www.site.com/send"data={'mobile':'13999999999','msg':'Success'}r=requests.post(url=url,data=json.dumps(data))