GetVideoPlayAuthRequest getVideoPlayAuthRequest = new GetVideoPlayAuthRequest(); GetVideoPlayAuthResponse getVideoPlayAuthResponse = new GetVideoPlayAuthResponse(); getVideoPlayAuthRequest.setVideoId(videoId); try { DefaultAcsClient client = getDefaultAcsClient(); getVideoPlayAuthResponse = VodUtil.getVideoPlayAuth(client, getVideoPlayAuthRequest); // 播放凭证 log.info("PlayAuth = " + getVideoPlayAuthResponse.getPlayAuth() + "\n"); VideoMeta meta = getVideoPlayAuthResponse.getVideoMeta(); // VideoMeta信息 log.info("VideoMeta.Title = " + meta.getTitle() + "\n"); return meta.getDuration();
} catch (Exception e) {
log.error("[VodController.getVideoPlayAuth] 阿里云视频-获取播放凭证异常", e);
}
return (float) 0.0;
楼主你好,根据错误信息,报错为"GetVideoPlayAuthRequest未初始化",这意味着你没有正确地实例化GetVideoPlayAuthRequest对象或者没有设置videoId属性。
请确保以下几点:
如果以上步骤都正确无误,仍然出现报错,请检查你的业务逻辑是否正确,并尝试查找更详细的错误日志或异常堆栈跟踪,以进一步定位问题。
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。