首页上一页 1 下一页尾页 1 条记录 1/1页
ai图像识别工具练习获取不到Access Token
发表在Python图书答疑
2020-10-06 悬赏:10 学分
《Python从入门到项目实践》第28章 AI图像识别工具
是否精华
是
否
版块置顶:
是
否
为什么我做ai图像识别工具练习时,在获取Access Token时出现这个错误:
host = 'https://aip.baidubce.com/oauth/2.0/token?grant_type=client_credentials&client_id=' + API_KEY +'&client_secret=' + SECRET_KEY
# 发送请求
headers = {'user-agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'}
content = requests.post(host,headers=headers)
#print(response.content.)
dd = content.content.decode('utf-8')
if (dd):
print(dd)
结果:
{"error_description":"unknown client id","error":"invalid_client"}
应该怎样做,请高手教教我
qq:27617817
于2020-10-06 23:17:54编辑