Add Getuser & Update space.md (#957)
* Update search.proto * Update view.proto add getuser * Update view.proto * Update space.md * Update space.md
This commit is contained in:
@@ -48,6 +48,8 @@ service View {
|
||||
rpc SeasonWidgetExpose(SeasonWidgetExposeReq) returns (SeasonWidgetExposeReply);
|
||||
//
|
||||
rpc GetArcsPlayer(GetArcsPlayerReq) returns (GetArcsPlayerReply);
|
||||
//
|
||||
rpc GetUser(GetUserReq) returns (GetUserReply);
|
||||
}
|
||||
|
||||
// 活动页资源包
|
||||
@@ -881,6 +883,20 @@ message GetArcsPlayerReq {
|
||||
bilibili.app.archive.middleware.v1.PlayerArgs player_args = 2;
|
||||
}
|
||||
|
||||
//
|
||||
message GetUserReq {
|
||||
//
|
||||
int64 aid = 1;
|
||||
//
|
||||
int64 up_mid = 1;
|
||||
}
|
||||
|
||||
//
|
||||
message GetUserReply {
|
||||
//
|
||||
User like_list = 1;
|
||||
}
|
||||
|
||||
//
|
||||
message GoodsInfo {
|
||||
//
|
||||
@@ -2121,6 +2137,27 @@ message TIcon {
|
||||
string icon = 1;
|
||||
}
|
||||
|
||||
//
|
||||
message User {
|
||||
//
|
||||
int64 mid = 1;
|
||||
//
|
||||
string name = 2;
|
||||
//
|
||||
string face = 3;
|
||||
//
|
||||
bool isFollow = 4;
|
||||
//
|
||||
int64 isAttention = 5;
|
||||
//
|
||||
int64 isInterrelation = 6;
|
||||
//
|
||||
int64 follower = 7;
|
||||
//
|
||||
string interactDesc = 8;
|
||||
//
|
||||
}
|
||||
|
||||
// UGC视频合集信息
|
||||
message UgcSeason {
|
||||
// 合集id
|
||||
|
||||
Reference in New Issue
Block a user