|
@@ -73,4 +73,12 @@ public class QwCallbackController {
|
|
|
LOGGER.warn("Unknown message type: {}", wrapperData.getType());
|
|
LOGGER.warn("Unknown message type: {}", wrapperData.getType());
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ @UnAuth
|
|
|
|
|
+ @PostMapping("/ad/callback")
|
|
|
|
|
+ public void onMessage(@RequestBody String callbackData) {
|
|
|
|
|
+ // 1. 解析外层数据
|
|
|
|
|
+ LOGGER.info("Received qw ad message: {},timestamp:{}", callbackData,System.currentTimeMillis());
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
}
|
|
}
|