贵族图标替换 同时增加新的参数

This commit is contained in:
ningwenqiang
2024-09-23 14:23:27 +08:00
parent 31c8365696
commit dffe681b95
5 changed files with 57 additions and 23 deletions

View File

@@ -31,19 +31,28 @@ public class LiveHttpUtil {
HttpClient.getInstance().cancel(tag);
}
/**
* 获取当前直播间的用户列表
*/
public static void getUserList(String liveuid, String stream, String type, int p, HttpCallback callback) {
public static void getUserList(String liveuid, String stream, String type, int p,String is_noble,HttpCallback callback) {
HttpClient.getInstance().get("Live.getUserLists", LiveHttpConsts.GET_USER_LIST)
.params("liveuid", liveuid)
.params("stream", stream)
.params("type", type)
.params("p", p)
.params("is_noble", is_noble)
.params("version", "" + VersionUtil.getVersion())
.execute(callback);
}
/**
* 获取当前直播间的用户列表
*/
public static void getUserList(String liveuid, String stream, String type, int p, HttpCallback callback) {
getUserList(liveuid,stream,type,p,"0",callback);
}
/**
* 获取直播用户日榜/周榜
*