简介 -奇异果体育app竞彩官网下载
概述
密钥管理服务是百度智能云提供的一款密钥管理服务,您可以通过该项服务便捷、安全、可靠的在云上管理密钥类信息。
如果您是初次调用百度智能云产品的api,可以观看api入门视频指南,快速掌握调用api的方法。
服务域名
kms服务目前支持"华北-北京"、"华南-广州"和"华东-苏州"三个区域。
区域 | 访问endpoint | 协议 |
---|---|---|
华北-北京 | bkm.bj.baidubce.com | https |
华南-广州 | bkm.gz.baidubce.com | https |
华东-苏州 | bkm.su.baidubce.com | https |
api认证机制
所有api的安全认证一律采用access key与请求签名机制。 access key由access key id和secret access key组成,均为字符串。 对于每个http请求,使用下面所描述的算法生成一个认证字符串。提交认证字符串放在authorization头域里。服务端根据生成算法验证认证字符串的正确性。 认证字符串的格式为bce-auth-v{version}/{accesskeyid}/{timestamp}/{expirationperiodinseconds}/{signedheaders}/{signature}
。
- version是正整数。
- timestamp是生成签名时的utc时间。
- expirationperiodinseconds表示签名有效期限。
- signedheaders是签名算法中涉及到的头域列表。头域名之间用分号(;)分隔,如host;x-bce-date。列表按照字典序排列。(本api签名仅使用host和x-bce-date两个header)
- signature是256位签名的十六进制表示,由64个小写字母组成。
当百度智能云接收到用户的请求后,系统将使用相同的sk和同样的认证机制生成认证字符串,并与用户请求中包含的认证字符串进行比对。如果认证字符串相同,系统认为用户拥有指定的操作权限,并执行相关操作;如果认证字符串不同,系统将忽略该操作并返回错误码。
鉴权认证机制的详细内容请参见鉴权认证。
幂等性
当调用某些接口时如果遇到了请求超时或服务器内部错误,用户可能会尝试重发请求,这时用户通过clienttoken参数避免创建出比预期要多的资源,即保证请求的幂等性。
幂等性基于clienttoken,clienttoken是一个长度不超过64位的ascii字符串,通常放在query string里,如http://bcc.bj.baidubce.com/v1/instance?clienttoken=be31b98c-5e41-4838-9830-9be700de5a20
。
如果用户使用同一个clienttoken值调用创建接口,则服务端会返回相同的请求结果。因此用户在遇到错误进行重试的时候,可以通过提供相同的clienttoken值,来确保只创建一个资源;如果用户提供了一个已经使用过的clienttoken,但其他请求参数(包括querystring和requestbody)不同甚至url path不同,则会返回idempotentparametermismatch的错误代码。
clienttoken的有效期为24小时,以服务端最后一次收到该clienttoken为准。也就是说,如果客户端不断发送同一个clienttoken,那么该clienttoken将长期有效。
日期与时间规范
日期与时间的表示有多种方式。为统一起见,除非是约定俗成或者有相应规范的,凡需要日期时间表示的地方一律采用utc时间,遵循,并做以下约束:
- 表示日期一律采用yyyy-mm-dd方式,例如2014-06-01表示2014年6月1日
- 表示时间一律采用hh:mm:ss方式,并在最后加一个大写字母z表示utc时间。例如23:00:10z表示utc时间23点0分10秒。
- 凡涉及日期和时间合并表示时,在两者中间加大写字母t,例如2014-06-01t23:00:10z表示utc时间2014年6月1日23点0分10秒。
公共请求头
头域 | 类型 | 说明 |
---|---|---|
authorization | string | 用于验证请求合法性的认证信息。更多参见鉴权认证 |
content-length | string | rfc2616中定义的http请求内容的长度 |
content-type | string | rfc2616中定义的http请求内容的类型 |
content-md5 | string | rfc2616定义的http请求内容的md5摘要,可以通过携带该字段来验证保存在kms侧的文件和用户预期的文件是否一致 |
date | string | http 1.1协议中规定的gmt时间,如wed, 06 apr 2016 06:34:40 gmt |
host | string | 访问host值,取值为访问区域对应的endpoint |
x-bce-date | string | 当前时间,遵循iso8601规范,格式如2016-04-06t08:23:49z |
公共响应头
头域 | 类型 | 说明 |
---|---|---|
content-length | string | rfc2616中定义的http请求内容长度 |
content-type | string | rfc2616中定义的http请求内容的类型 |
connection | string | 服务器是否断开连接,取值为close或者keep-alive |
date | string | http 1.1协议中规定的gmt时间,如wed, 06 apr 2016 06:34:40 gmt |
server | string | 服务器的名字,取值为bcekms |
x-bce-request-id | string | 由bce kms创建,是请求bcekms的唯一标识 |
x-bce-debug-id | string | 由bce kms创建,用于帮助排除故障的标识id,如果在使用kms过程中遇到问题,可以在工单中提供该字段便于快速定位问题 |
错误码
当用户访问出错时,kms返回的错误响应体如下:
{
"code":"accessdenied"
"message":"access denied"
"requestid":"7ab2b34d-614d-478a-ba9b-3049ca7b6479"
}
公共错误码
http状态码 | 错误码 | 消息 | 语义 |
---|---|---|---|
403 forbidden | accessdenied | access denied | 拒绝访问 |
403 forbidden | signaturedoesnotmatch | the request signature we calculated does not match the signature you provided | authorization头域中附带的签名和服务端计算出的签名不一致 |
400 bad request | invalidhttpauthheader | the http authorization header is invalid | authorization头域格式错误 |
400 bad request | missinghttpauthheader | you must provide the authorization header | 缺少authorization头域 |
403 forbidden | requestexpired | request has expired | 请求的时间戳过期 |
403 forbidden | invalidaccesskeyid | the access key id you provided does not exist in our records | 无效的access key id |
500 internal server error | internalerror | we encountered an internal error please try again | 内部服务错误 |
密钥管理服务错误码
http状态码 | 错误码 | 消息 | 语义 |
---|---|---|---|
400 bad request | masterkeynumexceed | you have attempted to create more master keys than allowed | master key数目超过限制 |
400 bad request | invalidplaintext | the plaintext you provided is invalid | 无效的待加密明文 |
404 not found | nosuchmasterkey | the specified master key does not exist | 不存在该master key |
400 bad request | invaliddescription | the specified description is invalid | 无效的master key描述 |
400 bad request | notimplemented | the api has not been implemented yet | 该接口不存在 |
400 bad request | invalidciphertext | the specified ciphertext is invalid | 无效的待解密密文 |
400 bad request | invalidmasterkeyid | the specified master key id is invalid | 无效的master key id |
400 bad request | missingmasterkeyid | you must provide the master key id | 缺少master key id字段 |
400 bad request | plaintextlengthexceed | the length of plaintext exceeds the limit | 待加密明文长度超过限制 |
400 bad request | missingplaintext | you must provide the plaintext | 缺少明文字段 |
400 bad request | invalidkeyusage | the specified keyusage is invalid | 无效的keyusage |
400 bad request | invalidpendingwindowindays | the specified pending windows in days is invalid | 指定的待删除天数非法 |
400 bad request | invalidlistkeyslimit | the specified limit of list keys is invalid | 指定的罗列master key的数目限制无效 |
400 bad request | missingciphertext | you must provide the ciphertext | 缺少待加密密文 |
400 bad request | missingnumberofbytes | you must provide the numberofbytes | 缺少生成密钥的长度的字段 |
400 bad request | invalidkeyspec | the specified keyspec is invalid | 非法的keyspec |
400 bad request | invalidnumberofbytes | the specified numberofbytes is invalid | 无效的numberofbytes |
429 too many requests | throttling | the rate of your request exceed limit | 访问被限速 |
400 bad request | invalidstate | the state of the specified key is invalid for your request | 指定的key状态无效 |
400 bad request | invalidjson | the json is malformed or does not meet the requirements | 可能是该json格式不正确,或者是不满足该接口要求 |
400 bad request | invalidmarker | the marker you provided is invalid | 无效的marker |
400 bad request | invalidaction | the specified action is not supported | 请求参数中action参数的值无效 |
400 bad request | unactivated | the account has not activated the kms service | 尚未激活kms服务 |
400 bad request | chargeoverdue | this account charge is overdue | 账户欠费 |