Python中request获取access-token的代码
时间: 2023-06-02 13:08:06 浏览: 301
204.获取access_token
以下是Python中使用request获取access-token的示例代码:
```python
import requests
url = 'https://api.weixin.qq.com/cgi-bin/token'
params = {
'grant_type': 'client_credential',
'appid': 'your_appid',
'secret': 'your_appsecret'
}
response = requests.get(url, params=params)
access_token = response.json().get('access_token')
print(access_token)
```
请注意,你需要替换代码中的 `your_appid` 和 `your_appsecret` 为你自己的微信公众号的 appid 和 app secret,该代码只是示例,请根据实际情况进行修改。
阅读全文