简单demo,即拿即用
目录
1.安装相关的库
2.代码编写
get请求
post请求
JSON的post请求
1.安装相关的库
pip install requests
2.代码编写 get请求# coding=utf-8
import requests
#请求参数
data={
'AppID':'wx72a6h73bc505c526',
'AppSecret':'832ace0aaf2f407b83ed22817f0b256d',
'grant_type':'client_credential'
}
#请求网址
url="https://api.weixin.qq.com/cgi-bin/token"
resp=requests.get(url,params=data)
print(resp.text)
post请求
# coding=utf-8
import requests
#请求参数
data={
'AppID':'wx72a6h73bc505c526',
'AppSecret':'832ace0aaf2f407b83ed22817f0b256d',
'grant_type':'client_credential'
}
#请求网址
url="https://api.weixin.qq.com/cgi-bin/token"
resp=requests.post(url,params=data)
print(resp.text)
JSON的post请求
import requests
import json
url="localhost/login"
jsons['name']='小狗'
jsons['password']='123'
requests.post(url, data=json.dumps(jsons), headers={'Content-Type': 'application/json}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)