From 7d3f0d02f364e583262aad4b6c6763f8e7b3de81 Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期五, 05 二月 2021 19:18:03 +0800 Subject: [PATCH] 浏览足迹 --- BuWanVideo/src/com/weikou/beibeivideo/BeibeiVideoAPI.java | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/BuWanVideo/src/com/weikou/beibeivideo/BeibeiVideoAPI.java b/BuWanVideo/src/com/weikou/beibeivideo/BeibeiVideoAPI.java index dc8e570..a92b5bc 100644 --- a/BuWanVideo/src/com/weikou/beibeivideo/BeibeiVideoAPI.java +++ b/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); -- Gitblit v1.8.0