Message.getListInfo、Message.getLists接口增加app_type字段

This commit is contained in:
老皮
2024-10-08 09:46:49 +08:00
parent 9ab0e4ad8d
commit 4244272d00
4 changed files with 7 additions and 2 deletions

View File

@@ -21,6 +21,7 @@ public class ImHttpUtil {
*/
public static void getImUserInfo(String uids, HttpCallback callback) {
HttpClient.getInstance().get("Message.getLists", ImHttpConsts.GET_IM_USER_INFO)
.params("app_type", "PD")
.execute(callback);
}
@@ -42,6 +43,7 @@ public class ImHttpUtil {
HttpClient.getInstance().get("Message.getListInfo", ImHttpConsts.GET_SYSTEM_MESSAGE_LIST)
.params("p", p)
.params("type", type)
.params("app_type", "PD")
.execute(callback);
}