forked from SocialSisterYi/bilibili-API-collect
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7d06579
commit 555f7ae
Showing
23 changed files
with
1,926 additions
and
2,360 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
syntax = "proto3"; | ||
|
||
package bilibili.account.fission.v1; | ||
|
||
//Fission裂变 | ||
service Fission { | ||
// 活动入口 | ||
rpc Entrance (EntranceReq) returns (EntranceReply); | ||
// 首页弹窗 | ||
rpc Window (WindowReq) returns (WindowReply); | ||
} | ||
|
||
// 活动入口-请求 | ||
message EntranceReq {} | ||
|
||
// 活动入口-响应 | ||
message EntranceReply { | ||
// 展示图标 | ||
string icon = 1; | ||
// 活动名称 | ||
string name = 2; | ||
// 活动跳转链接 | ||
string url = 3; | ||
// 动画效果 | ||
AnimateIcon animateIcon = 4; | ||
} | ||
|
||
// 首页弹窗-请求 | ||
message WindowReq {} | ||
|
||
//首页弹窗-响应 | ||
message WindowReply { | ||
// 弹窗类型 | ||
// 0:弹窗 1:普通页面 | ||
int32 type = 1; | ||
// 跳转链接 | ||
string url = 2; | ||
// 上报数据字段 | ||
string reportData = 3; | ||
} | ||
|
||
//动画效果 | ||
message AnimateIcon { | ||
// icon文件 | ||
string icon = 1; | ||
// 动效json文件 | ||
string json = 2; | ||
} |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
syntax = "proto3"; | ||
|
||
package bilibili.app.archive.middleware.v1; | ||
|
||
// 视频秒开参数 | ||
message PlayerArgs { | ||
// 清晰度 | ||
int64 qn = 1; | ||
// 流版本 | ||
int64 fnver = 2; | ||
// 流类型 | ||
int64 fnval = 3; | ||
// 返回url是否强制使用域名 | ||
// 0:不强制使用域名 1:http域名 2:https域名 | ||
int64 force_host = 4; | ||
} |
Oops, something went wrong.