上周有同学希望新增了一些接口,支持如下,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,否则会认为想设置为""。
这里的文章标题,链接可以修改了。