码迷,mamicode.com
首页 > 其他好文 > 详细

访问图灵机器人接口请求数据

时间:2019-01-15 19:59:59      阅读:363      评论:0      收藏:0      [点我收藏+]

标签:party   怎么   一句话   api   int   open   图灵机器人   library   request   

# 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")

 

访问图灵机器人接口请求数据

标签:party   怎么   一句话   api   int   open   图灵机器人   library   request   

原文地址:https://www.cnblogs.com/apollo1616/p/10273938.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!