访问图灵机器人接口请求数据
Posted apollo1616
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了访问图灵机器人接口请求数据相关的知识,希望对你有一定的参考价值。
# Third-party Library import requests # POST请求参数 args = { "reqType": 0, "perception": { "inputText": { "text": "北京" } }, "userInfo": { "apiKey": "eaf3daedeb374564bfe9db10044bc20b", "userId": "6789" } } # 图灵机器人API接口 url = "http://openapi.tuling123.com/openapi/api/v2" res = requests.post(url, json=args) print(res) # <Response [200]> print(res.json().get(‘results‘)[0].get(‘values‘).get(‘text‘)) """ { ‘emotion‘: { ‘robotEmotion‘: { ‘a‘: 0, ‘d‘: 0, ‘emotionId‘: 0, ‘p‘: 0 }, ‘userEmotion‘: { ‘a‘: 0, ‘d‘: 0, ‘emotionId‘: 0, ‘p‘: 0 } }, ‘intent‘: { ‘actionName‘: ‘‘, ‘code‘: 10004, ‘intentName‘: ‘‘ }, ‘results‘: [{ ‘groupType‘: 0, ‘resultType‘: ‘text‘, ‘values‘: { ‘text‘: ‘怎么老是一句话!‘ } }] } """ # {‘intent‘: {‘code‘: 4003}, ‘results‘: [{‘groupType‘: 0, ‘resultType‘: ‘text‘, ‘values‘: {‘text‘: ‘请求次数超限制!‘}}]} text = res.json().get("results")[0].get("values").get("text")
以上是关于访问图灵机器人接口请求数据的主要内容,如果未能解决你的问题,请参考以下文章