Python程式實作百度AI開放平台的介面對接方法,詳解與實作指南
安裝Python的請求庫requests,可以透過pip指令進行安裝:
pip install requests
以下是取得access_token的程式碼範例:
import requests # 定义鉴权API的URL auth_url = 'https://aip.baidubce.com/oauth/2.0/token' # 设置API Key和Secret Key api_key = 'your_api_key' secret_key = 'your_secret_key' # 构造鉴权API的参数 params = { 'grant_type': 'client_credentials', 'client_id': api_key, 'client_secret': secret_key } # 发送http请求 response = requests.get(auth_url, params=params) # 解析返回结果 access_token = response.json()['access_token']
語音辨識介面的URL為:
https://vop.baidu.com/server_api
以下是語音辨識介面的程式碼範例:
import requests import base64 # 定义语音识别API的URL speech_url = 'https://vop.baidu.com/server_api' # 设置要进行语音识别的语音文件路径 audio_file = 'path/to/audio/file.wav' # 将语音文件转换成base64编码 with open(audio_file, 'rb') as f: speech_data = f.read() speech_base64 = base64.b64encode(speech_data).decode('utf-8') # 构造语音识别API的参数 params = { 'dev_pid': '1536', # 中文普通话 'cuid': 'your_cuid', 'token': access_token, 'speech': speech_base64, 'len': len(speech_data) } # 发送http请求 response = requests.post(speech_url, data=params, headers={'content-type': 'application/json'}) # 解析返回结果 result = response.json()
以上是Python程式實作百度AI開放平台的介面對接方法,詳解與實作指南的詳細內容。更多資訊請關注PHP中文網其他相關文章!