1、Live.setReport增加app_type字段

2、app_type字段的值传 1代表PD
This commit is contained in:
老皮
2024-10-08 15:32:47 +08:00
parent ef09d9c58a
commit 14a3eeebf2
4 changed files with 7 additions and 5 deletions

View File

@@ -21,7 +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")
.params("app_type", "1")
.execute(callback);
}
@@ -43,7 +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")
.params("app_type", "1")
.execute(callback);
}