Authored by DengXinFei

修改client_id取值

... ... @@ -148,9 +148,9 @@ public class RedirectServiceImpl implements IRedirectService {
private String generateReqParam(UnionReqVO uionReqVO) {
JSONObject param = new JSONObject();
param.put("client_id", uionReqVO.getChannel_id());
param.put("client_id", uionReqVO.getUnion_type());
param.put("channel_code", uionReqVO.getTracking_code());
param.put("channel", uionReqVO.getChannel_id());
param.put("channel", uionReqVO.getUnion_type());
param.put("fl_uid", uionReqVO.getU_id());
param.put("go_url", uionReqVO.getTarget_url());
return param.toString();
... ...