云游会话视频同步
名称 | 类型 | 是否必须 | 示例值 | 更多限制 | 描述 |
---|---|---|---|---|---|
cloud_game_sync_session_video_request_dto | CloudGameSyncSessionVideoRequestDTO | 必须 | 云游会话视频 | ||
|
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
result | Boolean | true | 同步结果 |
sub_code_type | String | 10001 | 10001 |
is_success | Boolean | true | 调用是否成功 |
sub_extra_err_msg | String | 系统超时 | 子错误码描述 |
state_code | String | TIME_OUT | 错误码1 |
extra_err_msg | String | 系统内部错误1 | 错误信息 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret); AlibabaJymIndustryCloudgameSessionVideoSyncRequest req = new AlibabaJymIndustryCloudgameSessionVideoSyncRequest(); AlibabaJymIndustryCloudgameSessionVideoSyncRequest.CloudGameSyncSessionVideoRequestDTO obj1 = new AlibabaJymIndustryCloudgameSessionVideoSyncRequest.CloudGameSyncSessionVideoRequestDTO(); obj1.setVideoNo( "123123" ); obj1.setVideoEndTime(StringUtils.parseDateTime( "2023-11-27 20:43:51" )); obj1.setGmtModified(StringUtils.parseDateTime( "2023-11-27 20:43:51" )); obj1.setVideoStartTime(StringUtils.parseDateTime( "2023-11-27 20:43:51" )); obj1.setOssVideoPath( "oss/video/123.mp4" ); obj1.setSessionId( "90801923" ); obj1.setGmtCreate(StringUtils.parseDateTime( "2023-11-27 20:43:51" )); obj1.setOpenId( "612321312" ); req.setCloudGameSyncSessionVideoRequestDto(obj1); AlibabaJymIndustryCloudgameSessionVideoSyncResponse rsp = client.execute(req); System.out.println(rsp.getBody()); |
1 2 3 4 5 6 7 8 | < alibaba_jym_industry_cloudgame_session_video_sync_response > < result >true</ result > < sub_code_type >10001</ sub_code_type > < is_success >true</ is_success > < sub_extra_err_msg >系统超时</ sub_extra_err_msg > < state_code >TIME_OUT</ state_code > < extra_err_msg >系统内部错误1</ extra_err_msg > </ alibaba_jym_industry_cloudgame_session_video_sync_response > |
1 2 3 4 5 6 | < error_response > < code >50</ code > < msg >Remote service error</ msg > < sub_code >isv.invalid-parameter</ sub_code > < sub_msg >非法参数</ sub_msg > </ error_response > |
错误码 | 错误描述 | 解决方案 |
---|