bilibili-API-collect/grpc_api/bilibili/metadata/metadata.proto
Northern_Lights da24448000
Some checks failed
deploy and publish / build-and-deploy (push) Has been cancelled
revert 7809924e2d
revert delete all
2026-01-29 09:03:04 +00:00

23 lines
509 B
Protocol Buffer

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