百度文字识别获取access token
Posted qiaoer1993
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了百度文字识别获取access token相关的知识,希望对你有一定的参考价值。
import requests
url = "https://aip.baidubce.com/oauth/2.0/token"
data =
‘grant_type‘:‘client_credentials‘,
‘client_id‘:API Key,
‘client_secret‘:Secret Key,
response = requests.post(url=url,data=data)
print(response.text)
以上是关于百度文字识别获取access token的主要内容,如果未能解决你的问题,请参考以下文章