@fuyb1986
2016-07-21T06:41:21.000000Z
字数 408
阅读 505
面对面
Method | Resource URL |
---|---|
POST | /room/validator/name |
Name | Description | Required | Default |
---|---|---|---|
name | 房间名 | YES |
{
"name":"房间名"
}
curl -X POST -H 'content-type: application/json' \
-H 'Authorization: token 1d0e52789e7d8e042bc870d359605344747b5216' \
--data '{"name": "room name"}' http://localhost/room/validator/name/ ```
# 不存在
{
"code": 0,
"message": ""
}
# 存在
{
"code": -3,
"message": "房间名字已经存在"
}