修改【readme】 添加【安卓端登录】appsec 添加大量【proto结构文件】

This commit is contained in:
SocialSisterYi
2021-02-03 00:02:04 +08:00
parent adfb20f144
commit 07d0396bbc
33 changed files with 7848 additions and 1578 deletions

View File

@@ -1,23 +1,28 @@
syntax = "proto3";
package bilibili.metadata;
//环境参数2
//x-bili-metadata-bin
message Metadata{
//登录Token
string accessKey = 1;
//包类型
string mobiApp = 2;
//设备类型
string device = 3;
//构建id
int32 build = 4;
//渠道
string channel = 5;
//设备buvid
string buvid = 6;
//平台类型
string platform = 7;
}
import "google/protobuf/any.proto";
//接口回复报错信息
//grpc-status-details-bin
message Status{
int32 code = 1; //错误码
string message = 2; //错误信息
repeated google.protobuf.Any details = 3; //套娃专用
}