返回提交历史
Modified
grpc_api/bilibili/app/view/v1/view.proto
+10
-4
XFEstudio/bilibili-API-collect
fix(grpc_api): GetUserReq && GetUserReply
4645c1e
代码差异
1 个文件
+10
-4
@@ -886,15 +886,21 @@ message GetArcsPlayerReq {
886
886
//
887
887
message GetUserReq {
888
888
//
889
int64 aid = 1;
889
repeated int64 mids = 1;
890
//
891
int64 aid = 2;
892
//
893
int64 up_mid = 3;
890
894
//
891
int64 up_mid = 1;
895
bool only_fans = 4;
892
896
}
893
897
894
898
//
895
899
message GetUserReply {
896
//
897
User like_list = 1;
900
//
901
repeated User like_list = 1;
902
//
903
string title = 2;
898
904
}
899
905
900
906
//