无标题文章

# # 数据保全api文档数据保全api文档


##  3.1 获取用户授权令牌

###  接口名称:     getUserToken

###  接口作用:     获取用户授权令牌

###  请求路径:     http://datasecurity.com/api/Auth/getUserToken

###  method:    POST

###  请求参数:

| key    | 参数类型 | 是否必须 | 参数解释  |

| ------ | -------- | -------- | --------- |

| appKey | string   | 是  | 用户key值 |

###  响应参数:

| key    | 参数类型 | 参数解释  |

| ------ | -------- |  --------- |

| appKey | string   | 用户key值 |

###  返回数据:

{

code: 200,

message: "成功",

data: {

appKey: "549527",

expirseTime: 1459934437,

token: "397e977436488b4ebb02851a3bf5ae6530192f0e"

}

}

{

code: 4005,

message: "请求超时",

data: [ ]

}

----------

##    3.2数据保全

###  接口名称:     doSend

###  接口作用:     数据保全

###  请求路径:     http://datasecurity.com/api/Auth/doSend

###  method:     POST

###  请求参数:

| key    | 参数类型 | 是否必须 | 参数解释  |

| ------ | -------- | -------- | --------- |

| appKey | string   | 是  | 用户key值 |

| token  | string   | 是  | 授权令牌 |

| fileName   | file   | 是  | 保全文件 |

###  响应参数:

| key    | 参数类型 | 参数解释  |

| ------ | -------- |  --------- |

| securitySn | string   | 保全证书编号 |

| securityExpires | int |  保全证书过期时间戳 |

| securityTime | int    |保全证书时间戳 |

###  返回数据:

{

"code": 200,

"message": "成功",

"data": {

"success": [

{

"securityTime": 1459928881,

"securitySn": "14599288813355491367",

"securityExpires": 2091080881

}

]

}

}

----------

##    3.3 保全验证

###  接口名称:     doVerify

###  接口作用:     保全数据验证

###  请求路径:     http://datasecurity.com/api/Auth/doVerify

###  method:     POST

###  请求参数:

| key    | 参数类型 | 是否必须 | 参数解释  |

| ------ | -------- | -------- | --------- |

| appKey | string   | 是  | 用户key值 |

| token  | string   | 是  | 授权令牌 |

| certSn  | string   | 是  | 证书编号 |

| fileName   | file   | 是  | 验证文件 |

###  响应参数:

| key    | 参数类型 | 参数解释  |

| ------ | -------- |  --------- |

| result | boolen   | 返回值 true false |

###  返回数据:

{

"code": 200,

"message": "成功",

"data": {

"result": false

}

}

----------

##    3.4 获取保全证书详情

###  接口名称:     getCert

###  接口作用:     获取保全证书详情

###  请求路径:     http://datasecurity.com/api/Auth/getCert

###  method:     POST

###  请求参数:

| key    | 参数类型 | 是否必须 | 参数解释  |

| ------ | -------- | -------- | --------- |

| appKey | string   | 是  | 用户key值 |

| token  | string   | 是  | 授权令牌 |

| certSn  | string   | 是  | 证书编号 |

###  响应参数:

| key    | 参数类型 | 参数解释  |

| ------ | -------- |  --------- |

| result | boolen   | 返回值 true false |

###  返回数据:

{

"code": 200,

"message": "成功",

"data": {

"cert_id": "20",

"cert_sn": "14593338003986690274",

"uid": "0",

"security_user_type": "20",

"security_user_name": "合同保test",

"security_user_sn": "522122199202077435",

"security_sn_type": "10",

"data_type": "10",

"data_name": "sms",

"data_hash": "cb2b18e31d43881206a098fd19737575",

"data_ext": "html",

"data_size": "42216",

"data_path": null,

"salt": "E8970531G88M475A",

"platform_hash": "de6a46a7dc0361620e2b2250518df92fda83d2533fbc6d553e5e56321add5b7bc3e9a0f46193bba994673a54b8ff67d056441559e283ae368ec69b6bd9f45440",

"cert_hash": "2d43a7e74cac6d10d74b8428a7337aaa9b53d942cb2b85e3bea91f38d9e18e05124af595a2a2073b5a9ee333a64cbbb1aad190ff60c47fe057742faf49793047",

"create_time": "1459333800",

"expires_time": "2090485800",

"cert_path": "",

"pay_state": "20",

"tpl_type": "10",

"extras": [

{

"auto_id": "111",

"extra_id": "20",

"extra_key": "school",

"extra_val": "测试大学"

},

{

"auto_id": "112",

"extra_id": "20",

"extra_key": "profession",

"extra_val": "测试专业"

},

{

"auto_id": "113",

"extra_id": "20",

"extra_key": "student_id",

"extra_val": "33557799"

},

{

"auto_id": "114",

"extra_id": "20",

"extra_key": "unit",

"extra_val": "测试单位1"

},

{

"auto_id": "115",

"extra_id": "20",

"extra_key": "department",

"extra_val": "测试部门"

},

{

"auto_id": "116",

"extra_id": "20",

"extra_key": "position",

"extra_val": "测试职位2"

},

{

"auto_id": "117",

"extra_id": "20",

"extra_key": "address",

"extra_val": "测试住址"

},

{

"auto_id": "118",

"extra_id": "20",

"extra_key": "members",

"extra_val": "测试成员"

}

]

}

}

----------

##    3.3 根据用户SN返回用户保全证书列表

###  接口名称:     getList

###  接口作用:     保全数据验证

###  请求路径:     http://datasecurity.com/api/Auth/getList

###  method:     POST

###  请求参数:

| key    | 参数类型 | 是否必须 | 参数解释  |

| ------ | -------- | -------- | --------- |

| appKey | string   | 是  | 用户key值 |

| token  | string   | 是  | 授权令牌 |

| userSn  | string   | 是  | 用户保全编号 |

###  响应参数:

| key    | 参数类型 | 参数解释  |

| ------ | -------- |  --------- |

| count | int   | 总条数 |

| list | array   | 返回列表 |

| cert_sn | string   | 证书编号 |

| data_name | string | 保全文件名 |

| data_ext | string | 文件后缀名 |

| create_time |int | 保全时间 |

###  返回数据:

{

"code": 200,

"message": "成功",

"data": {

"count": "7",

"list": [

{

"cert_id": "19",

"cert_sn": "14593317064372221225",

"data_name": "web合同状态",

"data_type": "10",

"data_ext": "html",

"create_time": "1459331706",

"expires_time": "2090483706"

},

{

"cert_id": "20",

"cert_sn": "14593338003986690274",

"data_name": "sms",

"data_type": "10",

"data_ext": "html",

"create_time": "1459333800",

"expires_time": "2090485800"

},

{

"cert_id": "21",

"cert_sn": "14593343206571147103",

"data_name": "PhpStorm",

"data_type": "10",

"data_ext": "rar",

"create_time": "1459334320",

"expires_time": "2090486320"

},

{

"cert_id": "22",

"cert_sn": "14593917592071977532",

"data_name": "un",

"data_type": "10",

"data_ext": "sql",

"create_time": "1459391759",

"expires_time": "2090543759"

},

{

"cert_id": "24",

"cert_sn": "14594176574214814213",

"data_name": "new  3",

"data_type": "10",

"data_ext": "phpa",

"create_time": "1459417657",

"expires_time": "2090569657"

},

{

"cert_id": "25",

"cert_sn": "14594178012357076099",

"data_name": "user-dir/notify_url",

"data_type": "10",

"data_ext": "php",

"create_time": "1459417801",

"expires_time": "2090569801"

},

{

"cert_id": "26",

"cert_sn": "14599288813355491367",

"data_name": "new  3",

"data_type": "10",

"data_ext": "php",

"create_time": "1459928881",

"expires_time": "2091080881"

}

],

"page": "

    
"

}

}

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,332评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,508评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,812评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,607评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,728评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,919评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,071评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,802评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,256评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,576评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,712评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,389评论 4 332
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,032评论 3 316
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,798评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,026评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,473评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,606评论 2 350

推荐阅读更多精彩内容