调用图灵机器人API报错加密方式错误

今天按照图灵机器人官方API V2.0接入文档https://www.kancloud.cn/turing/www-tuling123-com/718227用python调用了一下。

 
  1. # -*- coding: utf-8 -*-

  2. """

  3. Created on Sun May 5 22:04:43 2019

  4.  
  5. @author: ND01

  6. """

  7.  
  8. import requests

  9. #sys.path.append('H:')

  10. #import output

  11. """借用第三方,进行语音智能聊天,图灵返回的字符串传回给output.py,把语言合成并播放出来"""

  12. def to_tolin():

  13. data = {

  14. "reqType":0,

  15. "perception": {

  16. "inputText": {

  17. "text": "附近的酒店"

  18. },

  19.  
  20.  
  21. },

  22. "userInfo": {

  23. "apiKey": "XXX",

  24. "userId": "1"

  25. }

  26. }

  27. res = requests.post("http://openapi.tuling123.com/openapi/api/v2",json=data)

  28. new_res = res.json().get("results")[0].get("values").get("text")

  29. print(new_res)

  30. #VoiceOutput(new_res)

  31.  
  32. to_tolin()

结果报错 :加密方式错误。

不是代码的问题啦,是因为你打开了秘钥开关

关上再运行代码就好了。

你可能感兴趣的:(聊天机器人,自然语言处理)