mirror of
https://github.com/SocialSisterYi/bilibili-API-collect.git
synced 2024-12-28 21:40:08 +08:00
139 lines
1.9 KiB
Protocol Buffer
139 lines
1.9 KiB
Protocol Buffer
syntax = "proto3";
|
|
|
|
package bilibili.api.probe.v1;
|
|
|
|
//
|
|
service Probe {
|
|
//
|
|
rpc TestCode (CodeReq) returns (CodeReply);
|
|
//
|
|
rpc TestReq (ProbeReq) returns (ProbeReply);
|
|
//
|
|
rpc TestStream (ProbeStreamReq) returns (ProbeStreamReply);
|
|
//
|
|
rpc TestSub (ProbeSubReq) returns (ProbeSubReply);
|
|
}
|
|
|
|
//
|
|
enum Category {
|
|
CATEGORY_UNSPECIFIED = 0; //
|
|
CATEGORY_ONE = 1; //
|
|
CATEGORY_TWO = 2; //
|
|
CATEGORY_THREE = 3; //
|
|
}
|
|
|
|
//
|
|
message CodeReply {}
|
|
|
|
//
|
|
message CodeReq {
|
|
//
|
|
int64 code = 1;
|
|
}
|
|
|
|
//
|
|
message DynamicMessageUpdate {
|
|
//
|
|
SimpleMessage body = 1;
|
|
}
|
|
|
|
//
|
|
message Embedded {
|
|
//
|
|
bool bool_val = 1;
|
|
//
|
|
int32 int32_val = 2;
|
|
//
|
|
int64 int64_val = 3;
|
|
//
|
|
float float_val = 4;
|
|
//
|
|
double double_val = 5;
|
|
//
|
|
string string_val = 6;
|
|
//
|
|
repeated int32 repeated_int32_val = 8;
|
|
//
|
|
repeated string repeated_string_val = 12;
|
|
//
|
|
map<string, string> map_string_val = 13;
|
|
//
|
|
map<string, ErrorMessage> map_error_val = 14;
|
|
}
|
|
|
|
//
|
|
message ErrorMessage {
|
|
//
|
|
int64 code = 1;
|
|
//
|
|
string reason = 2;
|
|
//
|
|
string message = 3;
|
|
}
|
|
|
|
//
|
|
enum ErrorReason {
|
|
PROBE_UNSPECIFIED = 0; //
|
|
PROBE_CATEGORY_NOTFOUND = 1; //
|
|
}
|
|
|
|
//
|
|
message ProbeReply {
|
|
//
|
|
string content = 1;
|
|
//
|
|
int64 timestamp = 2;
|
|
}
|
|
|
|
//
|
|
message ProbeReq {
|
|
//
|
|
int64 mid = 1;
|
|
//
|
|
string buvid = 2;
|
|
}
|
|
|
|
//
|
|
message ProbeStreamReply {
|
|
//
|
|
int64 sequence = 1;
|
|
//
|
|
int64 timestamp = 2;
|
|
//
|
|
string content = 3;
|
|
}
|
|
|
|
//
|
|
message ProbeStreamReq {
|
|
//
|
|
int64 mid = 1;
|
|
//
|
|
int64 sequence = 2;
|
|
}
|
|
|
|
//
|
|
message ProbeSubReply {
|
|
//
|
|
int64 message_id = 1;
|
|
}
|
|
|
|
//
|
|
message ProbeSubReq {
|
|
//
|
|
int64 buvid = 1;
|
|
}
|
|
|
|
//
|
|
message SimpleMessage {
|
|
//
|
|
int32 id = 1;
|
|
//
|
|
int64 num = 2;
|
|
//
|
|
string lang = 3;
|
|
//
|
|
int32 cate = 4;
|
|
//
|
|
Embedded embedded = 5;
|
|
}
|