From 087a8daa68c681faf0cb8eda9ae18456b5c68166 Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期二, 06 四月 2021 17:47:29 +0800 Subject: [PATCH] 3.9.0正式版本 --- BuWanVideo/src/com/weikou/beibeivideo/BeibeiVideoAPI.java | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/BuWanVideo/src/com/weikou/beibeivideo/BeibeiVideoAPI.java b/BuWanVideo/src/com/weikou/beibeivideo/BeibeiVideoAPI.java index 70283c9..cf52463 100644 --- a/BuWanVideo/src/com/weikou/beibeivideo/BeibeiVideoAPI.java +++ b/BuWanVideo/src/com/weikou/beibeivideo/BeibeiVideoAPI.java @@ -1148,6 +1148,20 @@ } + public static void uploadSession(Context context, String sessionId, + String type, + ResponseHandlerInterface handler) { + LinkedHashMap<String, String> params = new LinkedHashMap<String, String>(); + params.put("Method", "uploadSession"); + if (sessionId != null) + params.put("sessionId", sessionId); + if (type != null) + params.put("type", type); + commonPost(context, BASE_URL + "session", params, handler); + + } + + /** * 鑾峰彇鍓ч泦鍒楄〃 * -- Gitblit v1.8.0