反馈里面的标签分析
名称 | 类型 | 是否必须 | 示例值 | 更多限制 | 描述 |
---|---|---|---|---|---|
product_id | Number | 可选 | 98 | 产品id | |
source_identifier | String | 可选 | 0 | 来源标示符 | |
question_id | Number | 可选 | 0 | 问题类别,0为全部问题,否则为某一问题类别 | |
time | Number | 可选 | 20160121 | 时间点 | |
time_type | Number | 可选 | 2 | 0为当天,1为近七天,2为近30天 | |
parent_tag_id | Number | 可选 | 12 | 父标签,若没有传null,否则传父标签id |
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
result | Result | Result类型 | 接口返回model |
|
1 2 3 4 5 6 7 8 9 10 | TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret); KeludeApsFeedbackReportQueryinnertaganalysisRequest req = new KeludeApsFeedbackReportQueryinnertaganalysisRequest(); req.setProductId(98L); req.setSourceIdentifier( "0" ); req.setQuestionId(0L); req.setTime(20160121L); req.setTimeType(2L); req.setParentTagId(12L); KeludeApsFeedbackReportQueryinnertaganalysisResponse rsp = client.execute(req); System.out.println(rsp.getBody()); |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | < kelude_aps_feedback_report_queryinnertaganalysis_response > < result > < results > < knowledge > < id >1</ id > < created_at >2016-02-24</ created_at > < updated_at >2016-02-24</ updated_at > < log_date >20160611</ log_date > < product_id >1</ product_id > < question_id >12</ question_id > < question >“哈哈”</ question > < source_identifer >“Wireless”</ source_identifer > < tag_id >12</ tag_id > < tag_name >"淘宝"</ tag_name > < feedback_count >12</ feedback_count > </ knowledge > </ results > < other >Stirng类型</ other > < msg_code >String类型</ msg_code > < error_code >2</ error_code > < msg_info >String类型</ msg_info > < success >true</ success > < messages > < string >Json数组</ string > </ messages > </ result > </ kelude_aps_feedback_report_queryinnertaganalysis_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 > |
错误码 | 错误描述 | 解决方案 |
---|