| | 429 | |
| | 430 | |
| | 431 | == 获取用户某个时间之后的爆料数和未读评论 2.5之后版本使用== |
| | 432 | |
| | 433 | > 线上:[http://best.pconline.com.cn/app/my/getNewCountForApp.do?lastAccessTime=1425450000?common_session_id=56D39281DCC5AA42DC3D98B1A2E48B9A /app/my/getNewCountForApp.do] |
| | 434 | |
| | 435 | **说明** |
| | 436 | |
| | 437 | > 获取用户某个时间之后的爆料数,评论数和系统消息数 |
| | 438 | |
| | 439 | **提交方式** |
| | 440 | |
| | 441 | > GET |
| | 442 | |
| | 443 | **是否需要登录** |
| | 444 | |
| | 445 | > 是 |
| | 446 | |
| | 447 | **缓存方式** |
| | 448 | |
| | 449 | > 无 |
| | 450 | |
| | 451 | **缓存时间** |
| | 452 | |
| | 453 | > - |
| | 454 | |
| | 455 | **参数** |
| | 456 | |
| | 457 | ||= 参数名 =||= 参数含义 =||= 类型 =||= 默认值 =||= 是否必须 =|| |
| | 458 | ||common_session_id|| - ||String||""||是|| |
| | 459 | ||lastAccessTime||最近一次访问该接口的时间||long(时间戳 毫秒)||当前时间||是|| |
| | 460 | |
| | 461 | **返回** |
| | 462 | |
| | 463 | {{{#!java |
| | 464 | result { |
| | 465 | status: 1 |
| | 466 | msg: '请求成功', |
| | 467 | data: { |
| | 468 | newTopicCount":100 // 新收到的爆料数量 |
| | 469 | newCommentCount: 1 // 新收到的评论数量 |
| | 470 | newSystemNoticeCount: 1 // 新收到的系统消息数量 |
| | 471 | } |
| | 472 | } |
| | 473 | }}} |
| | 474 | |
| | 475 | ---------- |