赞
踩
按照如下步骤(来自百度API接入官方文档):
百度API接入官方文档链接
百度帐户注册链接 ,点击注册即可
获取AccessToken百度官方文档
即访问向授权服务地址https://aip.baidubce.com/oauth/2.0/token发送请求(推荐使用POST),并在URL中带上
以下参数:
grant_type: 必须参数,固定为client_credentials;
client_id: 必须参数,应用的API Key;
client_secret: 必须参数,应用的Secret Key;
代码如下:
# encoding:utf-8
import requests
# client_id 为官网获取的API Key, client_secret 为官网获取的Secret Key
host = 'https://aip.baidubce.com/oauth/2.0/token?grant_type=client_credentials&client_id=【官网获取的API Key】&client_secret=【官网获取的Secret Key】'
response = requests.get(host)
if response:
print(response.json())
将如图代码所示的地方换成获取到的值,运行该程序,则可得到输出结果为:
输出结果中的access_token值即是我们要得到的值。
使用百度API进行情感分析(python)(二)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。