用户注册

请求URL

/bibleUser/register POST

请求体 application/json

{
	"uuid":"string //用户UUID【必须】"
}

返回结果

{
	"userId":"string //用户ID",
	"token":"string //用户令牌"
}

更新单个用户字段

请求URL

/bibleUser/updateUserField POST

请求体 application/json

{
	"fieldName":"string //字段名称,可选值:nickName, email, church, avatar【必须】",
	"fieldValue":"string //字段值【必须】"
}

返回结果

{
	"fieldName":"string //字段名称",
	"fieldValue":"string //字段值",
	"updateTime":"long //更新时间戳"
}

获取用户配置选项

请求URL

/bibleUser/getProfileOptions POST

请求体 application/json

{
	"type":"int //配置类型      1:年龄范围、2:性别、3:信仰、4:支持需求"
}

返回结果

[{
	"id":"int //选项ID",
	"value":"string //选项值"
}]

设置用户个人信息

请求URL

/bibleUser/setUserProfile POST

请求体 application/json

{
	"type":"int //配置类型      1:年龄范围、2:性别、3:信仰、4:支持需求",
	"profileId":"int //选项ID"
}

返回结果

Map{}