python client使用http post 到server端的代码
更新时间:2013年02月10日 17:44:24 作者:
python client使用 http post 到server端的代码,供大家学习参考
复制代码 代码如下:
import urllib, httplib
import utils
import json
class User:
def __init__(self):
print 'a'
def login(self, imsi, ua):
print "==============user start login=================="
input = {
"method" : "user.login",
"userName" : "",
"userPass" : "",
}
input["sig"] = utils.getSignature(input)
params = urllib.urlencode(input)
headers = {
"user-agent" : ua,
"Appstore-clientType" : "android",
"Appstore-IMEI" : "123456789000000",
"Appstore-IMSI" : imsi
}
try:
connection = httplib.HTTPConnection(utils.API_HOST)
connection.request("POST", "/api", params, headers)
response = connection.getresponse().read()
#print "=========" + response
connection.close()
except Exception, e :
print "========" + str(e)
if "errorcode" in response or response is None:
return
results = json.loads(response)
return results["results"].encode("utf-8")
您可能感兴趣的文章:
- PHP中soap用法示例【SoapServer服务端与SoapClient客户端编写】
- Java虚拟机JVM之server模式与client模式的区别
- Python Socket实现简单TCP Server/client功能示例
- Android系统进程间通信(IPC)机制Binder中的Server和Client获得Service Manager接口之路
- python实现的udp协议Server和Client代码实例
- SQL Server Native Client下载 SQL Server Native Client安装方法
- 使用Java实现简单的server/client回显功能的方法介绍
- Asp.Net 不同的OnClick事件区别小结(onserverclick,onclientclick)
- JVM Client和Server端有什么区别
最新评论