2 回答
TA贡献1829条经验 获得超6个赞
您需要从 导出服务帐户密钥 (JSON)文件,并将环境变量设置GOOGLE_APPLICATION_CREDENTIALS为包含服务帐户密钥的 JSON 文件的文件路径。然后你就可以调用dialogflow了。
获取服务帐户密钥的步骤: 确保您使用的是 Dialogflow v2。转到常规设置并单击您的服务帐户。这会将您重定向到 Google Cloud Platform 项目的服务帐户页面。下一步是为服务帐户创建新密钥。现在创建一个服务帐户并选择 JSON 作为输出密钥。按照说明操作,JSON 文件将下载到您的计算机。该文件将用作GOOGLE_APPLICATION_CREDENTIALS.
现在在代码中,
import os
import dialogflow
os.environ["GOOGLE_APPLICATION_CREDENTIALS"] = "/path/to/file.json"
project_id = "your_project_id"
session_id = "your_session_id"
language_code = "en"
session_client = dialogflow.SessionsClient()
session = session_client.session_path(project_id, session_id)
text_input = dialogflow.types.TextInput(text=text, language_code=language_code)
query_input = dialogflow.types.QueryInput(text=text_input)
response_dialogflow = session_client.detect_intent(session=session, query_input=query_input)
TA贡献1802条经验 获得超4个赞
如果您想从文件系统中获取文件,此方法也适用。推荐的方法是使用环境变量
import json
from google.cloud import dialogflow_v2
from google.oauth2 import *
session_client = None
dialogflow_key = None
creds_file = "/path/to/json/file.json"
dialogflow_key = json.load(open(creds_file))
credentials = (service_account.Credentials.from_service_account_info(dialogflow_key))
session_client = dialogflow_v2.SessionsClient(credentials=credentials)
print("it works : " + session_client.DEFAULT_ENDPOINT) if session_client is not None
else print("does not work")
我忘记添加主要文章抱歉...这里是:
https://googleapis.dev/python/google-auth/latest/user-guide.html#service-account-private-key-files
添加回答
举报