图灵机器人api返回数据格式怎么处理php
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了图灵机器人api返回数据格式怎么处理php相关的知识,希望对你有一定的参考价值。
参考技术A sybase_connect连上数据库。语法:
int
sybase_connect(string
[servername],
string
[username],
string
[password]);
返回值:
整数函数种类:
数据库功能
本函数用来打开与
Sybase
数据库的连接。
参数
servername
为欲连上的数据库服务器名称。
参数
username
及
password
可省略,分别为连接使用的帐号及密码。
使用本函数需注意早点关闭数据库,以减少系统的负担。
连接成功则返回数据库的连接代号,失败返回
false
值。
访问图灵机器人接口请求数据
# 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")
以上是关于图灵机器人api返回数据格式怎么处理php的主要内容,如果未能解决你的问题,请参考以下文章