client/docs/relation/follow.md

2.1 KiB
Raw Permalink Blame History

Follow

relation-关系管理:关注

/relation.Follow/Doing

执行关注

Request

{
    id: "0", // type<int64>, 唯一ID
    identity: "", // type<string>, 唯一码
}

Reply

{
    data: "", // type<string>, 数据
    timeseq: "0", // type<int64>, 响应时间序列
}

/relation.Follow/Undo

撤销关注

Request

{
    id: "0", // type<int64>, 唯一ID
    identity: "", // type<string>, 唯一码
}

Reply

{
    data: "", // type<string>, 数据
    timeseq: "0", // type<int64>, 响应时间序列
}

/relation.Follow/State

关注状态

Request

{
    id: "0", // type<int64>, 唯一ID
    identity: "", // type<string>, 唯一码
}

Reply

{
    data: "", // type<string>, 数据
    timeseq: "0", // type<int64>, 响应时间序列
}

/relation.Follow/Fetch

获取关注列表

Request

{
    page_no: "0", // type<int64>, 页数
    page_size: "0", // type<int64>, 每页记录数
    params: {
        "": ""
    }, // map<string,string>, 条件参数,key=val,eg key:category_id=?,vlaue=11 
}

Reply

{
    total: "0", // type<int64>, 总记录数
    data: [{
        identity: "", // type<string>
        nickname: "", // type<string>, 昵称
        remark_name: "", // type<string>, 备注名称
        popular: 0, // type<int32>, 是否置顶
        avatar: "", // type<string>
        birthday: "", // type<string>, 生日
        sex: 0, // type<int32>, 性别1为男性2为女性
        province: 0, // type<int32>, 省
        city: 0, // type<int32>, 市
        area: 0, // type<int32>, 区
        sign: "", // type<string>, 签名
        tags: [""], // list<string>, 所属标签组
        foreign_status: 0, // type<int32>, 外表的状态值,根据表不同,值的作用不同
    }], // list<RelationItem>
}