获取用户信息
更新时间:2017-03-01
接口描述
该接口用于获取用户信息。
请求地址
https://spark.bokecc.com/api/user
请求方式
GET
请求参数
以下请求参数需要进行THQS权限认证, 权限认证方式请参考THQS认证方式。
名称 |
类型 |
必填 |
描述 |
userid |
String |
是 |
用户id。 |
format |
String |
是 |
返回格式,xml 或json。 |
请求示例
https://spark.bokecc.com//api/user?format=json&time=1670827404988&userid=xxxxxxx&hash=790B61D9907E3C9321C04DB5F3407190
返回数据
名称 |
类型 |
说明 |
user |
Object |
用户信息。 |
user说明
名称 |
类型 |
说明 |
account |
String |
用户账户。 |
version |
String |
版本信息。 |
expired |
String |
到期时间。 |
space |
Object |
用户空间信息。 |
traffic |
Object |
用户流量信息。 |
space说明
名称 |
类型 |
说明 |
total |
Float |
用户空间总量,单位:G。 |
remain |
Float |
用户空间剩余总量,单位:G。 |
used |
Float |
用户空间使用总量,单位:G。 |
traffic说明
名称 |
类型 |
说明 |
total |
Float |
用户流量总量,单位:G。 |
remain |
Float |
用户剩余流量大小,单位:G。 |
used |
Float |
用户已使用流量大小,单位:G。 |
XML返回示例
<?xmlversion="1.0"encoding="UTF-8"?>
<user>
<account>test@test.com</account>
<version>
<![CDATA\[试用版]]>
</version>
<expired>2011-06-06</expired>
<space>
<total>2</total>
<remain>1.9</remain>
<used>0.1</used>
</space>
<traffic>
<total>5</total>
<remain>4.8</remain>
<used>0.2</used>
</traffic>
</user>
JSON返回示例
{
"user": {
"account": "test@test.com",
"version": "试用版",
"expired": "2011-06-06",
"space": {
"total": 2,
"remain": 1.9,
"used": 0.1
},
"traffic": {
"total": 5,
"remain": 4.8,
"used": 0.2
}
}
}