admin
2021-02-05 7d3f0d02f364e583262aad4b6c6763f8e7b3de81
BuWanVideo/src/com/weikou/beibeivideo/BeibeiVideoAPI.java
@@ -1058,13 +1058,16 @@
    }
    public static void getVideoDetail(Context context, String uid,
                                      String ResourceId, String videoId, String loginid, String type,
                                      String ResourceId, String videoId, Integer position, String loginid, String type,
                                      ResponseHandlerInterface handler) {
        LinkedHashMap<String, String> params = new LinkedHashMap<String, String>();
        params.put("Method", "getVideoDetail");
        params.put("Uid", uid);
        params.put("LoginUid", loginid);
        params.put("VideoId", videoId);
        if (position != null) {
            params.put("Position", position+"");
        }
        params.put("ResourceId", ResourceId);
        params.put("Type", type);
        commonPost(context, BASE_URL + "recommend", params, handler);