1092772959 / AppDevelopment

夏季小学期app开发
0 stars 1 forks source link

提问/提问记录 接口 #8

Open bnshen opened 5 years ago

bnshen commented 5 years ago

url:"/api/message"
// 请求1

{
"method":"GET",
"headers":"你们看",
"Content-Type":"application/json"
}

// 返回1
{
    "items": [
        {
            "id": "1",
            "send_id": "1",
            "receive_id": "2",
            "context": "怎么才能领奖?",
            "send_time": "2019-6-10",
            "type": ""
        },
        {
            "id": "2",
            "send_id": "2",
            "receive_id": "1",
            "context": "你说呢",
            "send_time": "2019-6-10",
            "type": ""
        },
        {
            "id": "3",
            "send_id": "1",
            "receive_id": "2",
            "context": "到底怎么才能领奖?啊啊啊啊啊啊\n啊啊啊啊\n啊啊啊\n",
            "send_time": "2019-6-10",
            "type": ""
        }
    ]
}

// 请求2
{
"method":"POST",
"headers":"你们看",
"Content-Type":"application/x-www-form-urlencoded",
"body":{
"user_id":"1",
"type":"",
"content":""
}
}
// 返回2
{
"status":"200"
}