我正在使用dialogflow_v2,正在尝试从Web服务Python中获取响应,当我尝试在控制台上运行时,它起作用了,但是当我尝试从Web应用程序中获取响应时,我得到了
< / p>
“服务不可用:超过503个截止日期”
代码看起来像
text="Buenos días";
text_input= dialogflow_v2.types.TextInput(text=text,language_code='Spanish')
query_input = dialogflow_v2.types.QueryInput(text=text_input)
print query_input
response = session_client.detect_intent(session=session, query_input=query_input)
有人可以帮助我吗?