XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet
公开
关注 0 Fork 0 Star 0
返回提交历史

XFEstudio/bilibili-API-collect

fix(grpc_api): GetUserReq && GetUserReply

4645c1e
陈寒彤 <cxwdyx620@gmail.com>
提交于

代码差异

1 个文件 +10 -4
Modified grpc_api/bilibili/app/view/v1/view.proto +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 //