Skip to content

我的通知消息

HanJie edited this page May 27, 2020 · 2 revisions
请求方法 请求地址 是否需要登录
GET https://v2ex.com/notifications

查询参数

参数名 参数值 类型
once 页码值,从 1 开始 Int

返回结果:com.imhanjie.v2ex.api.model.Notifications

{
  "code": 1,
  "data": {
    "currentPage": 1,	// 当前页码
    "items": [
      {
        "createTime": "4 天前",	// 创建时间
        "replyRichContent": "",	// 回复内容 HTML 富文本
        "titleRichContent": "\u003ca 	href\u003d\"/member/xingzhi\"\u003e\u003cstrong\u003exingzhi\u003c/strong\u003e\u003c/a\u003e 感谢了你发布的主题 › \u003ca href\u003d\"/t/567112#reply79\"\u003e一个困扰我半年的 macOS 蓝牙有时断连的问题终于解决了!\u003c/a\u003e",	// 标 题 HTML 富文本
        "userAvatar": "https://cdn.v2ex.com/avatar/2bf2/83c0/3627_large.png?m\u003d1590152333"	// 用户头像
      },
      {
        "createTime": "11 天前",
        "replyRichContent": "卸载了 handshaker,貌似好点,还是有断连现象,可能就是周围无线设备太多了",
        "titleRichContent": "\u003ca href\u003d\"/member/wzhvictor\"\u003e\u003cstrong\u003ewzhvictor\u003c/strong\u003e\u003c/a\u003e\u003ca href\u003d\"/t/567112#reply79\"\u003e一个困扰我半年的 macOS 蓝牙有时断连的问题终于解决了!\u003c/a\u003e 里回复了你",
        "userAvatar": "https://cdn.v2ex.com/avatar/6dd3/3922/238489_large.png?m\u003d1586418585"
      }
    ],
    "totalPage": 34	// 总页数
  }
}
@GET("/notifications")
fun loadNotifications(
  @Query("p") pageIndex: Int
): RestfulResult<Notifications>
Clone this wiki locally