通用参数(Header)
Loading, please wait...
名称
类型
备注
Token string 渠道 Token (固定),请向管理员申请
业务参数(Body)
Loading, please wait...
名称
类型
备注
UserKey string 登录后获取的UserKey
Year int 查询年
Month int 查询月
DEMO:
  1. {
  2. "UserKey": "oooooo",
  3. "Year": 2023,
  4. "Month": 12
  5. }
响应参数
Loading, please wait...
名称
类型
备注
Code int 编码:0 = 成功
Message string 返回的错误信息
Data object 业务数据包
LiveDateTime DateTime 开播完整时间
LiveDate DateTime 开播日
LiveTime TimeSpan 开播时间
LiveYear int 开播年
LiveMonth int 开播月
LiveDay int 开播日
DEMO:
  1. {
  2. "Message": "ok",
  3. "Code": 0,
  4. "Data": [
  5. {
  6. "LiveDateTime": "2023-12-24 19:30:00",
  7. "LiveDate": "2023-12-24 00:00:00",
  8. "LiveTime": "19:30:00",
  9. "LiveYear": 2023,
  10. "LiveMonth": 12,
  11. "LiveDay": 24
  12. },
  13. {
  14. "LiveDateTime": "2023-12-25 20:00:00",
  15. "LiveDate": "2023-12-25 00:00:00",
  16. "LiveTime": "20:00:00",
  17. "LiveYear": 2023,
  18. "LiveMonth": 12,
  19. "LiveDay": 25
  20. }
  21. ]
  22. }