接口說(shuō)明
/get-config
使用JSSDK接口權(quán)限所需的字段
返回:
{
"status" 1,
"appId": "xxx",
"timestamp": 123456,
"nonceStr": "xxx",
"signature": "xxx"
}
/add-books
添加用戶上傳的圖書
請(qǐng)求:
{
"openid": "xxx",
"books": [
{
"title": "書名",
"author": "作者",
"img_src": "圖片url"
}
]
}
返回:
{
"status": 1 // 表示成功
}
/get-books
獲取某用戶上傳的圖書
請(qǐng)求:
{
"openid": "xxx"
}
返回:
{
"status": 1,
"books": [
{
"title": "書名",
"author": "作者",
"img_src": "封面圖片url"
}
]
}
/add-phone
添加用戶手機(jī)號(hào)
請(qǐng)求:
{
"openid": "xxx",
"phone": "123456"
}
返回:
{
"status": 1
}
/get-rankings
獲取排行榜
返回:
{
"status": 1,
"rankings": [
{
"name": "用戶名",
"avatar": "頭像url",
"amount": 10, // 圖書數(shù)量
"percentage": 0.1, // 圖書占比
"rank": 1 // 排名
}
]
}