初始化视频首次加载的时间

This commit is contained in:
wangjinlei
2024-04-24 19:12:30 +08:00
parent 872b9939f9
commit 0764d8dce4
6 changed files with 92 additions and 14 deletions

View File

@@ -107,7 +107,8 @@ public class CourseController {
@RequestMapping("/getPlayAuth")
public R getPlayAuth(@RequestBody Map<String,String> map) throws Exception {
String playAuth = SpdbUtil.getPlayAuth(map.get("vid"));
GetVideoPlayAuthResponse vid = SpdbUtil.getPlayAuth(map.get("vid"));
String playAuth = vid.getBody().getPlayAuth();
return R.ok().put("playAuth",playAuth);
}