登录

去注册 忘记密码?

登录

注册

去登录

  • 扫码关注公众号
  • 发送“我爱安卓
  • 即可获取验证码

注册

解锁回答区域

  • 扫码关注公众号
  • 发送“我爱安卓

若你登陆,将永久解锁;
若未登录,仅本机解锁。

解锁回答区域

获取注册验证码

  • 扫码关注公众号
  • 发送“我爱安卓
  • 即可获取验证码

玩 Android API 新增通知[2021-08-22]

鸿洋   2021-08-22 17:30   收藏 我也要投递项目>>

上周有同学希望新增了一些接口,支持如下,wanandroid api 文档中已经更新。

支持个人信息接口

接口:

https://wanandroid.com//user/lg/userinfo/json

返回:

{
    "data": {
        "coinInfo": { // 积分和排名可能不是实时的,每天更新
            "coinCount": 36662, // 可用
            "level": 367, // 可用
            "nickname": "",
            "rank": "3", // 可用
            "userId": 2, // 可用
            "username": "x**oyang"
        },
        "userInfo": {
            "admin": false,
            "chapterTops": [],
            "coinCount": 36662, // 可用
            "collectIds": [ // 可用
            ],
            "email": "623565791@qq.com", // 可用
            "icon": "", 
            "id": 2, // 可用
            "nickname": "鸿洋",// 可用
            "password": "",
            "publicName": "鸿洋", 
            "token": "",
            "type": 0,
            "username": "xiaoyang"// 可用
        }
    },
    "errorCode": 0,
    "errorMsg": ""
}

所有分页接口,可以自定每页数据量

参数名:page_size
取值范围:[1-40]

例如:

https://www.wanandroid.com/article/list/0/json?page_size=1

只返回一条数据。

收藏的站内/站外文章支持编辑

https://wanandroid.com/lg/collect/user_article/update/ 文章 id/json
方法:POST请求
参数
	文章 id:拼接在 url 上
	title: 文章标题
	link: 文章 url
	author: 作者

注意:调用此接口,一定要带上 title,link,author,否则会认为想设置为""。

WX20210822-172926.png

这里的文章标题,链接可以修改了。