签到记录
金色童年
签到
Method and URL Structure
Method |
Resource URL |
Description |
POST |
/account/singin/ |
签到 |
Reponse Data
Name |
Description |
number |
连续第 N 天签到 |
sign_in_date |
签到日期 |
Response
{
"pk":2,
"number":1,
"sign_in_date":"2016-10-21"
}
查询当天签到状态
Method and URL Structure
Method |
Resource URL |
Description |
GET |
/account/has_signin/ |
|
Response
{
"has_sigin": true
}
签到历史
Method and URL Structure
Method |
Resource URL |
Descrtipion |
GET |
/account/signin/history/ |
签到历史 |
Response
{
"count":1,
"next":null,
"previous":null,
"results":[{
"pk":2,
"number":1,
"sign_in_date":"2016-10-21"
}]
}