@fuyb1986
2016-10-09T09:49:44.000000Z
字数 1179
阅读 515
金色童年
Method | Resource URL | Description |
---|---|---|
GET | /messages/inbox/ | inbox 里的所有消息 |
GET | /messages/inbox/{id}/ | 单条消息 |
No Applicatated
curl -H 'Authorization: Token 9944b09199c62bcf9418ad846dd0e4bbdfc6ee4b'\ http://localhost/messages/inbox/
Name | Description |
---|---|
id | id |
message | 消息文本 |
level | DEBUG, INFO ... |
tags | 标签,可以视为类型 |
date | 发消息的时间 |
url | 附加的 url |
[
{
"id": "1",
"message": "Hello,World",
"level": 21,
"tags": "",
"date": "2016-10-09T17:35:38.763",
"url": null
},
{
"id": "2",
"message": "你好世界",
"level": 21,
"tags": "",
"date": "2016-10-09T17:37:32.162",
"url": null
},
{
"id": "3",
"message": "你好世界",
"level": 21,
"tags": "system",
"date": "2016-10-09T17:37:38.353",
"url": null
}
]
已读后inbox 里看不到了
Method | Resource URL | Descrtipion |
---|---|---|
POST | /messages/inbox/${id}/read | 单条消息已读 |
POST | /messages/mark_all_read/ | 所有消息已读 |
curl -X POST -H 'Authorization: Token 9944b09199c62bcf9418ad846dd0e4bbdfc6ee4b'\ http://localhost/messages/inbox/3/read/
已读后inbox 里看不到了
Method | Resource URL | Descrtipion |
---|---|---|
GET | /messages/inbox_count/ | 未读消息数量 |
curl -H 'Authorization: Token 9944b09199c62bcf9418ad846dd0e4bbdfc6ee4b'\ http://localhost/messages/inbox_count/
{
"count": 2, # 未读条数
"status": 0,
"message": ""
}