[关闭]
@fuyb1986 2016-11-11T07:05:19.000000Z 字数 488 阅读 517

签到记录

金色童年


签到

Method and URL Structure

Method Resource URL Description
POST /account/singin/ 签到

Reponse Data

Name Description
number 连续第 N 天签到
sign_in_date 签到日期

Response

  1. {
  2. "pk":2,
  3. "number":1,
  4. "sign_in_date":"2016-10-21"
  5. }

查询当天签到状态

Method and URL Structure

Method Resource URL Description
GET /account/has_signin/

Response

  1. {
  2. "has_sigin": true
  3. }

签到历史

Method and URL Structure

Method Resource URL Descrtipion
GET /account/signin/history/ 签到历史

Response

  1. {
  2. "count":1,
  3. "next":null,
  4. "previous":null,
  5. "results":[{
  6. "pk":2,
  7. "number":1,
  8. "sign_in_date":"2016-10-21"
  9. }]
  10. }
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注