当前位置:   article > 正文

免费的聊天机器人API_机器人聊天api免费接口

机器人聊天api免费接口

1 青云客

http://api.qingyunke.com/

在这里插入图片描述
调用方法:

def qingyunke(self, msg):
    url = 'http://api.qingyunke.com/api.php?key=free&appid=0&msg={}'.format(urllib.parse.quote(msg))
    html = requests.get(url)
    return html.json()["content"]
  • 1
  • 2
  • 3
  • 4

效果还不错,只是返回有点慢。

2 思知

https://www.ownthink.com

在这里插入图片描述

调用方法:

def ownthink(self, msg):
    url = 'https://api.ownthink.com/bot?spoken={}'.format(urllib.parse.quote(msg))
    html = requests.get(url)
    return html.json()["data"]['info']['text']
  • 1
  • 2
  • 3
  • 4
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/697124
推荐阅读
相关标签
  

闽ICP备14008679号