通信接口测试(json)

通信接口测试(json),第1张

概述通信接口测试(json)

下面是内存溢出 jb51.cc 通过网络收集整理的代码片段。

内存溢出小编现在分享给大家,也给大家做个参考。

#!/usr/bin/env python#  -*- Coding:utf-8 -*-# file post.pyimport urllibimport urllib2import Json    def post(action,values):	try:		#此处url自行修改		url="http://server_path"+action+"suffix"		jdata = Json.dumps(values,sort_keys=True,indent=4,ensure_ascii=False)		print jdata		req = urllib2.Request(url,jdata)		response = urllib2.urlopen(req)		str = response.read()		print Json.dumps(Json.loads(str),ensure_ascii=False) 	except:		print "Error Action:",action	finally:		print ""#使用示例post(	"/goods/getPrice",{		"goodsID":"52a255084a824d98014a83f56d2b0000","speValueID1":"52a255084ac3736d014ac39e6ef5015b","speValueID2":"","speValueID3":""	})

以上是内存溢出(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

总结

以上是内存溢出为你收集整理的通信接口测试(json)全部内容,希望文章能够帮你解决通信接口测试(json)所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1198507.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-03
下一篇 2022-06-03

发表评论

登录后才能评论

评论列表(0条)

保存