|
@@ -14,6 +14,8 @@ import org.springframework.web.bind.annotation.RequestBody;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
+import java.io.UnsupportedEncodingException;
|
|
|
+
|
|
|
@RestController
|
|
|
@RequestMapping("/matchVideo")
|
|
|
public class MatchVideoController {
|
|
@@ -37,7 +39,7 @@ public class MatchVideoController {
|
|
|
}
|
|
|
|
|
|
@PostMapping("/recallideos")
|
|
|
- public String recallVideos(@RequestBody RecallVideosParam recallVideosParam) {
|
|
|
+ public String recallVideos(@RequestBody RecallVideosParam recallVideosParam) throws UnsupportedEncodingException {
|
|
|
return matchVideoService.recallVideos(recallVideosParam);
|
|
|
}
|
|
|
|