admin
2020-10-10 8039a1b2fbfa3471b6f726d3e839d7867c81a84f
BuWanVideo/src/com/weikou/beibeivideo/BeibeiVideoAPI.java
@@ -197,11 +197,10 @@
    public static void search(Context context, String uid, String key,
                              String contentType, String page, ResponseHandlerInterface handler) {
        LinkedHashMap<String, String> params = new LinkedHashMap<String, String>();
        params.put("Method", "search");
        params.put("Method", "searchNew");
        params.put("Uid", uid);
        params.put("Key", key);
        params.put("Type", "1");
        params.put("ContentType", contentType);
        params.put("Type", contentType);
        params.put("Page", page);
        commonPost(context, BASE_URL + "user", params, handler);
    }
@@ -716,7 +715,7 @@
    public static void getChoiceClass(Context context, String uid,
                                      ResponseHandlerInterface handler) {
        LinkedHashMap<String, String> params = new LinkedHashMap<String, String>();
        params.put("Method", "getVideoClass");
        params.put("Method", "getHomeClass");
        params.put("Uid", uid);
        commonPost(context, BASE_URL + "class", params, handler);
    }