bilibili-API-collect/grpc_api/bilibili/metadata/metadata.proto

23 lines
509 B
Protocol Buffer
Raw Normal View History

2021-06-11 01:03:04 +08:00
syntax = "proto3";
package bilibili.metadata;
// 请求元数据
// gRPC头部:x-bili-metadata-bin
message Metadata {
2023-07-14 12:46:41 +08:00
// 登录 access_key
2021-06-11 01:03:04 +08:00
string access_key = 1;
2023-07-14 12:46:41 +08:00
// 包类型, 如 `android`
2021-06-11 01:03:04 +08:00
string mobi_app = 2;
2023-07-14 12:46:41 +08:00
// 运行设备, 留空即可
2021-06-11 01:03:04 +08:00
string device = 3;
2023-07-14 12:46:41 +08:00
// 构建id, 如 `7380300`
2021-06-11 01:03:04 +08:00
int32 build = 4;
2023-07-14 12:46:41 +08:00
// APP分发渠道, 如 `master`
2021-06-11 01:03:04 +08:00
string channel = 5;
2023-07-14 12:46:41 +08:00
// 设备唯一标识
2021-06-11 01:03:04 +08:00
string buvid = 6;
2023-07-14 12:46:41 +08:00
// 平台类型, 如 `android`
2021-06-11 01:03:04 +08:00
string platform = 7;
}