| | |
| | | public static void sendCircle(Context context, Long uid, String id, |
| | | BasicTextHttpResponseHandler handler) { |
| | | LinkedHashMap<String, String> params = new LinkedHashMap<>(); |
| | | params.put("uid", uid + ""); |
| | | if (uid != null) |
| | | params.put("uid", uid + ""); |
| | | params.put("id", id + ""); |
| | | commonPostWithFailture(context, BASE_URL2 + "user/cloud/sendCircle", params, handler); |
| | | } |
| | |
| | | if (!LoginAndInviteStatusUtil.acessNext(context, uid, true)) |
| | | return; |
| | | LinkedHashMap<String, String> params = new LinkedHashMap<>(); |
| | | params.put("uid", uid + ""); |
| | | if (uid != null) |
| | | params.put("uid", uid + ""); |
| | | params.put("type", type + ""); |
| | | params.put("id", id); |
| | | if (goodsId != null) |
| | |
| | | */ |
| | | public static void evaluateCopyComment(Context context, Long uid, String id, String cid, BasicTextHttpResponseHandler handler) { |
| | | LinkedHashMap<String, String> params = new LinkedHashMap<>(); |
| | | params.put("uid", uid + ""); |
| | | if (uid != null) |
| | | params.put("uid", uid + ""); |
| | | params.put("cid", cid); |
| | | params.put("id", id); |
| | | commonPostWithFailture(context, BASE_URL2 + "dynamic/evaluateComment", params, handler); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 复制推荐语 |
| | | * |
| | | * @param context |
| | | * @param uid |
| | | * @param id |
| | | * @param handler |
| | | */ |
| | | public static void evaluateCopyRecommend(Context context, Long uid, String id, BasicTextHttpResponseHandler handler) { |
| | | LinkedHashMap<String, String> params = new LinkedHashMap<>(); |
| | | if (uid != null) |
| | | params.put("uid", uid + ""); |
| | | params.put("id", id); |
| | | commonPostWithFailture(context, BASE_URL2 + "dynamic/evaluateCopyRecommend", params, handler); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 转链 |
| | | * |
| | | * @param context |
| | | * @param uid |
| | | * @param link |
| | | * @param handler |
| | | */ |
| | | public static void evaluateConvertLink(Context context, Long uid, String link, BasicTextHttpResponseHandler handler) { |
| | | LinkedHashMap<String, String> params = new LinkedHashMap<>(); |
| | | if (uid != null) |
| | | params.put("uid", uid + ""); |
| | | params.put("link", link); |
| | | commonPostWithFailture(context, BASE_URL2 + "dynamic/convertLink", params, handler); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 首页顶部分类分类数据 |
| | | * |