Authored by unknown

update

... ... @@ -360,12 +360,14 @@ public class ClickUnionRest implements ApplicationEventPublisherAware{
log.error("addUnion4Stream error with request={}", bo, e);
}
try {
//增加监控,把接口报上去,根据client_type来判断
bo.setInterfaceType("addUnion4Jump_ios");
if(StringUtils.isNotEmpty(bo.getClient_type())&&bo.getClient_type().equals(ClientTypeEnum.ANDROID.getName())){
if((StringUtils.isNotEmpty(bo.getClient_type())&&bo.getClient_type().equals(ClientTypeEnum.ANDROID.getName()))||StringUtils.isNotBlank(bo.getImei())){
bo.setInterfaceType("addUnion4Jump_android");
}
if(StringUtils.isNotBlank(bo.getIdfa())){
bo.setInterfaceType("addUnion4Jump_ios");
}
StringBuffer stringBuffer = new StringBuffer();
//根据union_type区分不同的厂商
String union_type = bo.getUnion_type();
... ...