设置用户信息
设置应用用户的信息,包括用户的基本信息(userProfile
)和拓展信息(userExtProfile
)。基本信息包括是所有用户都会有的共性信息,比如昵称、性别、邮箱、生日等信息,拓展信息是可以自定义的额外信息。
开通服务
调用此接口前,您须在控制台开通信息托管服务。
请求方法
POST: https://数据中心域名/user/profile/set.json
频率限制: 每秒钟限 100 次
签名规则: 所有服务端 API 请求均需要进行规则校验,详见 API 请求签名。
正文参数
HTTP 请求正文数据格式为 application/x-www-form-urlencoded
,支持以下 HTTP 表单参数:
参数 | 类型 | 必传 | 说明 |
---|---|---|---|
userId | String | 是 | 用户 ID |
userProfile | String | 否 | 用户基本信息,为 JSON 数据。 |
userExtProfile | String | 否 | 用户扩展信息,为 JSON 数据。key 的长度不超过 32 个字符,key的前缀必须加 ext_, value 的长度,value不超过 256 个字符,KV的长度有配置,默认最多 20个。 |
userProfile
中的 key 如下:
key 值 | 类型 | 长度/取值范围 | 描述 |
---|---|---|---|
uniqueId | String | 长度不超过 32 个字符 | 用户应用号 |
name | String | 长度不超过 32 个字符 | 昵称 |
portraitUri | String | 长度不超过 128 个字符 | 头像地址 |
String | 长度不超过 128 个字符 | Email 地址 | |
birthday | String | 长度不超过 32 个字符 | 生日 |
gender | Int | 取值范为:
| 性别 |
location | String | 长度不超过 32 个字符 | 所在地 |
role | Int | 0~100 | 角色 |
level | Int | 0~100 | 级别 |
请求示例
POST /user/profile/set.json HTTP/1.1
Host: api.rong-api.com
App-Key: uwd1c0sxdlx2
Nonce: 14314
Timestamp: 1408710653491
Signature: 45beb7cc7307889a8e711219a47b7cf6a5b000e8
Content-Type: application/x-www-form-urlencoded
userId=u1&userProfile={"AppName":"testAppName"}&userExtProfile={"ext_Profile1":"testpro1"}
返回结果
HTTP 响应正文包含具有以下结构的 JSON 对象:
返回值 | 返回类型 | 说明 |
---|---|---|
code | Number | 返回码,200 为正常。 |
profileKey | String | 如果返回的 code 不是 200,则设置失败,返回具体失败的 key。 |
返回结果示例
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
{
"code": 200,
}