内容纲要
概要描述
目前TDS3.0.1中,Foresight的数据集API推送功能只支持POST请求。本文主要介绍,如何通过api推送Foresight的数据集。
注:API接口参数的格式为:form-data表单
详细说明
1、api推送操作设置
api推送位置:【商城】-【数据集】-【公共数据集】-【API调用-推送数据集】
api推送设置,填写URL,当前只接受 POST 请求
提交申请并审批成功后推送
2、推送后数据格式 form-data
{
"colNames":"em_employeeid,em_name,em_sex,em_age,em_idcard,em_born,em_nation,em_marriage,em_visage,em_ancestralhome,em_telephone,em_address,em_afterschool,em_speciality,em_culture,em_startime,em_typework,em_creatime,em_createname,em_note,em_departmentid,em_postalcode,em_mobilephone",
"assetsName":"wttf",
"rows":"14703,韩白,null,26,360625xxxxxxxx8279,19xxxxxx,中国,已婚,群众,上海市浦东新区,1688872xxxx,上海市卢湾区卢湾区打浦桥街道办事处南塘浜路103号,同济大学,游泳,博士研究生,2020-04-11 00:09:00,全职,2021-04-16 21:12:03,null,,4,200020,137****8357,14706,钱平从,female,25,340225xxxxxxxx2557,19xxxxxx,中国,null,党员,辽宁沈大连市,1923024xxxx,null,同济大学,null,硕士研究生,2011-01-21 06:26:58,全职,2021-02-16 05:04:08,null,,6,null,136****2795,14709,朱曼书,male,24,530205xxxxxxxx3327,19xxxxxx,中国,未婚,群众,福建省厦门市,190xxxx2445,上海市静安区曹家渡街道办事处武定路1108号,null,搞钱,大专,2016-03-11 06:04:53,兼职,2018-06-30 08:33:46,super admin,,7,200040,136****4686
}
3、接口参考
仅供参考,具体逻辑处理需自行编写
参数包含内容:
colNames: 数据集字段名称
assetsName: 数据集名称
rows: 数据集数据
package com.example.xal.controller;
import org.springframework.web.bind.annotation.*;
@RestController
@RequestMapping("/aa")
public class HelloController {
@RequestMapping(value = "/hello",method = RequestMethod.POST)
@ResponseBody
public String demo(@RequestParam("colNames") String colNames,
@RequestParam("assetsName") String assetsName,
@RequestParam("rows") String rows){
return rows;
}
}