邮箱附件上传
接口定义
素材上传接口
请求方式
POST
请求地址
http://10.10.255.196/api/v2/media/upload
请求格式
JSON & Bytes
key 必选
Content-MD5 必选
Content-Length 必选
Content-Type 可选
Content-Disposition 可选
Content-ID 可选
{
'User-Agent': 'Mozilla/5.0 \(Windows; U; Windows NT 6.1; en-US; rv:1.9.1.6\) Gecko/20091201 Firefox/3.5.6',
'Content-MD5': '2a29c32648f9d9b45b9caebedfdc0fe5',
'Content-Type': 'text/plain',
'Content-Length': '2501',
'Content-Disposition': 'media-name',
'Content-ID': '10'
}
返回示例
{
'code': 200,
'message': 'success',
'data': {
'content-md5': '2a29c32648f9d9b45b9caebedfdc0fe5',
'content-type': 'text/plain',
'content-disposition': 'test.txt',
'content-length': '2501',
'request-id': 'f218684e6a354d1aa9a90604e631b5f0'
}
}