概述
application/json;charset=UTF-8
post请求有两种请求格式:
1、key-value的格式’Content-Type’:‘application/x-www-form-urlencoded’
2、标准json的格式:‘Content-Type’:‘application/json’
200 成功处理了请求,一般情况下都是返回此状态码;
import urllib.parse,requests
values={}
name='#'
id='#'
def pojie(name,id):
values['sname']=name
#s=urllib.parse.unquote(s) 解码函数
#编码函数urllib.parse.urlencode(values)
data=urllib.parse.urlencode(values)
Cookie='stuid='+id+';'+' '+data
print(Cookie)
voteurl='http://218.197.150.59/wudavote/vote/doVoting'
postdata={'stuid':id,'all':'16,15,13,12,11,10,9,8,7,6,'}
s = requests.Session()
r=s.post(url=voteurl,
#stuid: 2018282140118
data=urllib.parse.urlencode(postdata),
headers={
'Cookie': Cookie,
'Host':'218.197.150.59',
'Referer': 'http://218.197.150.59/wudavote/views/pages/vote.html',
'Origin': 'http://218.197.150.59',
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36',
#'Content-Type':'application/x-www-form-urlencoded'
}
)
html=s.get(r.url)
print(html)
print("获取返回的状态码", r.status_code)
return(r.url)
#def afterprint(url):
if __name__ == '__main__':
pojie(name,id)
最后
以上就是潇洒大碗为你收集整理的武汉大学十佳教师投票的全部内容,希望文章能够帮你解决武汉大学十佳教师投票所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复