bilibili-API-collect/grpc_api/bilibili/ad/v1/ad.proto

470 lines
11 KiB
Protocol Buffer
Raw Normal View History

syntax = "proto3";
package bilibili.ad.v1;
import "google/protobuf/wrappers.proto";
2021-06-14 01:33:41 +08:00
// 广告控制
message AdsControlDto {
// 视频是否有弹幕,如有,需请求弹幕广告
int32 hasDanmu = 1;
// 有弹幕的分P视频的cid
repeated int64 cids = 2;
// 有弹幕的ogv ep
repeated AdOgvEpDto eps = 3;
}
2021-06-14 01:33:41 +08:00
// 有弹幕的ogv ep
message AdOgvEpDto {
// 分集epid
int64 epid = 1;
// 是否显示 "荐"
bool hasRecommend = 2;
}
2021-06-14 01:33:41 +08:00
// 广告数据
message SourceContentDto {
// 广告请求id
string requestId = 1;
// 广告资源位source ID
int32 sourceId = 2;
// 广告资源位resource ID
int32 resourceId = 3;
// 广告位上报标记,对广告返回数据恒为true
bool isAdLoc = 4;
// 与天马现有逻辑一致, 0有含义
// 0:内容 1:广告
google.protobuf.Int32Value serverType = 5;
// 客户端IP回传拼接
string clientIp = 6;
// 广告卡片位置在一刷中的位置, 天马用, 0有含义
google.protobuf.Int32Value cardIndex = 7;
// 广告资源位source 位次
int32 index = 8;
// 广告内容
AdDto adContent = 9;
}
2021-06-14 01:33:41 +08:00
// 广告内容
message AdDto {
// 广告创意ID
int64 creativeId = 1;
// 广告闭环上报回传数据
string adCb = 2;
// 额外广告数据
AdContentExtraDto extra = 3;
// 广告标记
int32 cmMark = 4;
//
2021-06-14 01:33:41 +08:00
int64 topViewId = 5;
//
int32 creativeType = 6;
//
int32 cardType = 7;
//
int32 creativeStyle = 8;
//
int32 isAd = 9;
//
CreativeDto creativeContent = 10;
}
2021-06-14 01:33:41 +08:00
// 额外广告数据
message AdContentExtraDto {
// 动态布局
string layout = 1;
// 展现监控url
repeated string showUrls = 2;
// 点击监控url
repeated string clickUrls = 3;
// 弹幕创意列表展示第三方上报
repeated string danmuListShowUrls = 4;
// 弹幕创意列表点击第三方上报
repeated string danmuListClickUrls = 5;
// 弹幕详情页展示第三方上报
repeated string danmuDetailShowUrls = 6;
// 弹幕商品添加购物车第三方上报
repeated string danmuTrolleyAddUrls = 7;
// useWebView默认false
bool useAdWebV2 = 8;
// app唤起白名单
repeated string openWhitelist = 9;
// app下载白名单
AppPackageDto downloadWhitelist = 10;
// 卡片相关信息
AdCardDto card = 11;
// 视频播放和弹幕播放上报控制时间 ms
int32 reportTime = 12;
// 是否优先唤起app store
int32 appstorePriority = 13;
// 广告售卖类型
int32 salesType = 14;
// 落地页是否预加载
int32 preloadLandingpage = 15;
// 是否需要展示风险行业提示
bool specialIndustry = 16;
// 风险行业提示
string specialIndustryTips = 17;
// 是否展示下载弹框
bool enableDownloadDialog = 18;
// 是否允许分享
bool enableShare = 19;
// 个人空间广告入口类型
// 1:橱窗 2:商品店铺 3:小程序
int32 upzoneEntranceType = 20;
// 个人空间广告入口上报id,橱窗id(当前用Mid)、店铺id或者小程序id
int32 upzoneEntranceReportId = 21;
// 分享数据
AdShareInfoDto shareInfo = 22;
// topview图片链接闪屏预下载用
string topviewPicUrl = 23;
// topview视频链接闪屏预下载用
string topviewVideoUrl = 24;
// 点击区域
// 0:表示banner可点击 1:表示素材可点击
int32 clickArea = 25;
// 店铺
int64 shopId = 26;
// up主
int64 upMid = 27;
// 回传id
string trackId = 28;
// 商店直投
int32 enableStoreDirectLaunch = 29;
// DPA2.0商品ID
int64 product_id = 30;
}
//
2021-06-14 01:33:41 +08:00
message CreativeDto {
//
2021-06-14 01:33:41 +08:00
string title = 1;
//
string description = 2;
//
string imageUrl = 3;
//
string imageMd5 = 4;
//
string url = 5;
//
string clickUrl = 6;
//
string showUrl = 7;
//
int64 videoId = 8;
//
string thumbnailUrl = 9;
//
string thumbnailUrlMd5 = 10;
//
string logoUrl = 11;
//
string logoMd5 = 12;
//
string username = 13;
}
2021-06-14 01:33:41 +08:00
// app下载白名单
message AppPackageDto {
// 包大小(单位bytes)
int64 size = 1;
//
string displayName = 2;
//
string apkName = 3;
// url
string url = 4;
// bili schema url
string biliUrl = 5;
// 包md5
string md5 = 6;
// 包icon
string icon = 7;
// 开发者姓名
string devName = 8;
// 权限地址
string authUrl = 9;
// 权限名,逗号隔开
string authName = 10;
// 版本
string version = 11;
// 更新时间,yy-mm-hh格式
string updateTime = 12;
// 隐私协议标题
string privacy_name = 13;
// 隐私协议url
string privacy_url = 14;
}
2021-06-14 01:33:41 +08:00
// 卡片
message AdCardDto {
2021-06-14 01:33:41 +08:00
// 卡片类型
int32 cardType = 1;
2021-06-14 01:33:41 +08:00
// 标题
string title = 2;
2021-06-14 01:33:41 +08:00
// 描述
string desc = 3;
2021-06-14 01:33:41 +08:00
// 额外描述
string extraDesc = 4;
2021-06-14 01:33:41 +08:00
// 长描述
string longDesc = 5;
2021-06-14 01:33:41 +08:00
// 短标题, 弹幕广告目录面板标题
string shortTitle = 6;
2021-06-14 01:33:41 +08:00
// 弹幕/浮层广告的弹幕标题
string danmuTitle = 7;
2021-06-14 01:33:41 +08:00
// 弹幕/浮层广告的弹幕高度整型分母为100
int32 danmuHeight = 8;
2021-06-14 01:33:41 +08:00
// 弹幕/浮层广告的弹幕宽度整型分母为100
int32 danmuWidth = 9;
2021-06-14 01:33:41 +08:00
// 弹幕/浮层广告生存时间,单位为毫秒
int32 danmuLife = 10;
2021-06-14 01:33:41 +08:00
// 弹幕/浮层开始时间,单位为毫秒
int32 danmuBegin = 11;
2021-06-14 01:33:41 +08:00
// 背景色值(含透明度)如#80FFFFFF
string danmuColor = 12;
2021-06-14 01:33:41 +08:00
// 弹幕/浮层广告H5落地页
string danmuH5Url = 13;
2021-06-14 01:33:41 +08:00
// 弹幕/浮层 广告icon
string danmuIcon = 14;
2021-06-14 01:33:41 +08:00
// 折叠时间,永驻浮层折叠时间,单位为毫秒
int32 foldTime = 15;
2021-06-14 01:33:41 +08:00
// 广告标文案
string adTag = 16;
2021-06-14 01:33:41 +08:00
// cover数组
repeated AdCoverDto covers = 17;
2021-06-14 01:33:41 +08:00
// 卡片跳转链接
string jumpUrl = 18;
//
string imaxLandingPageJsonString = 19;
2021-06-14 01:33:41 +08:00
// app唤起schema
string callupUrl = 20;
2021-06-14 01:33:41 +08:00
// univeral link域名
string universalApp = 21;
2021-06-14 01:33:41 +08:00
// 原价, 单位为分
string oriPrice = 22;
2021-06-14 01:33:41 +08:00
// 现价, 同上
int32 curPrice = 23;
2021-06-14 01:33:41 +08:00
// 券后/现价 价格描述
string priceDesc = 24;
2021-06-14 01:33:41 +08:00
// 价格单位符号
string priceSymbol = 25;
2021-06-14 01:33:41 +08:00
// 券后价格 "1000"
string goodsCurPrice = 26;
2021-06-14 01:33:41 +08:00
// 原价 "¥1002"
string goodsOriPrice = 27;
2021-06-14 01:33:41 +08:00
// 开放平台商品
AdGoodDto good = 28;
2021-06-14 01:33:41 +08:00
// 打分? 满分为100
int32 rank = 29;
2021-06-14 01:33:41 +08:00
// 热度
int32 hotScore = 30;
2021-06-14 01:33:41 +08:00
// 按钮
AdButtonDto button = 31;
2021-06-14 01:33:41 +08:00
// 广告主logo
string adverLogo = 32;
2021-06-14 01:33:41 +08:00
// 广告主name
string adverName = 33;
2021-06-14 01:33:41 +08:00
// 广告主主页链接
string adverPageUrl = 34;
2021-06-14 01:33:41 +08:00
// 视频弹幕,视频广告用
repeated string videoBarrage = 35;
2021-06-14 01:33:41 +08:00
// 商业标信息
AdBusinessMarkDto adTagStyle = 36;
2021-06-14 01:33:41 +08:00
// 自动播放视频
AdAutoPlayVideoDto video = 37;
2021-06-14 01:33:41 +08:00
// 反馈面板功能模块,屏蔽、投诉、广告介绍
AdFeedbackPanelDto feedbackPanel = 38;
//
int64 adverMid = 39;
//
int64 adverAccountId = 40;
//
string duration = 41;
//
repeated QualityInfo qualityInfos = 42;
2021-06-14 01:33:41 +08:00
// 动态广告文本
string dynamicText = 43;
2021-06-14 01:33:41 +08:00
// 广告主信息
AdverDto adver = 44;
2021-06-14 01:33:41 +08:00
// 评分
int32 grade_level = 45;
}
2021-06-14 01:33:41 +08:00
// 分享
message AdShareInfoDto {
// 分享标题
string title = 1;
// 分享副标题
string subtitle = 2;
// 分享图片url
string imageUrl = 3;
}
2021-06-14 01:33:41 +08:00
// 广告卡片封面数据
message AdCoverDto {
2021-06-14 01:33:41 +08:00
// 图片链接
string url = 1;
2021-06-14 01:33:41 +08:00
// 动图循环次数
// 0:无限循环
int32 loop = 2;
2021-06-14 01:33:41 +08:00
// 图片点击跳转地址,截至目前为空
string jumpUrl = 3;
2021-06-14 01:33:41 +08:00
// 跳转监测链接, 数组单个图片的监控出区别于click_urls应前端要求。此字段截至目前为空使用时需再次确认
repeated string reportUrls = 4;
2021-06-14 01:33:41 +08:00
// 图片高度
int32 imageHeight = 5;
2021-06-14 01:33:41 +08:00
// 图片宽度
int32 imageWidth = 6;
}
2021-06-14 01:33:41 +08:00
// 按钮
message AdButtonDto {
// 类型
// 1:落地页 2:应用唤起 3:应用下载
int32 type = 1;
// 按钮文案
string text = 2;
// 按钮跳转地址
string jumpUrl = 3;
// 跳转监测链接
string reportUrls = 4;
// 唤起schema
string dlsucCallupUrl = 5;
//游戏id
int32 game_id = 6;
//游戏监控字段
string game_monitor_param = 7;
}
2021-06-14 01:33:41 +08:00
// 商业标信息
message AdBusinessMarkDto {
// 商业标样式
// 0:不展示标 1:实心+文字 2:空心框+文字 3:纯文字标 4:纯图片标
int32 type = 1;
// 商业标文案
string text = 2;
// 商业标文案颜色,如#80FFFFFF RGBA
string textColor = 3;
// 夜间模式文字色
string textColorNight = 4;
// 背景色
string bgColor = 5;
// 夜间模式背景色
string bgColorNight = 6;
// 边框色
string borderColor = 7;
// 夜间模式边框色
string borderColorNight = 8;
// 图片商业标
string imgUrl = 9;
// 图片高度
int32 imgHeight = 10;
// 图片宽度
int32 imgWidth = 11;
//
2021-06-14 01:33:41 +08:00
string bgBorderColor = 12;
}
2021-06-14 01:33:41 +08:00
// 自动播放视频
message AdAutoPlayVideoDto {
// avid
int64 avid = 1;
// cid
int64 cid = 2;
// 分P
int64 page = 3;
//
2021-06-14 01:33:41 +08:00
string from = 4;
// 是否自动播放
string url = 5;
// 是否自动播放
string cover = 6;
// 是否自动播放
bool autoPlay = 7;
// 按钮是否动态变色
bool btnDycColor = 8;
// 按钮动态变色时间 ms
int32 btnDycTime = 9;
// 用于做联播是否是同一个视频的id
int64 bizId = 10;
// 开始播放三方监控
repeated string process0Urls = 11;
// 播放3S三方监控
repeated string play3SUrls = 12;
// 播放5S三方监控
repeated string play5SUrls = 13;
// 横竖屏
int32 orientation = 14;
}
2021-06-14 01:33:41 +08:00
// 反馈面板功能模块
message AdFeedbackPanelDto {
2021-06-14 01:33:41 +08:00
// 面板类型,广告、推广
string panelTypeText = 1;
2021-06-14 01:33:41 +08:00
// 反馈面版信息
repeated AdFeedbackPanelModuleDto feedbackPanelDetail = 2;
}
2021-06-14 01:33:41 +08:00
// 反馈面版信息
message AdFeedbackPanelModuleDto {
2021-06-14 01:33:41 +08:00
// 模块id
int32 moduleId = 1;
2021-06-14 01:33:41 +08:00
// icon url
string iconUrl = 2;
2021-06-14 01:33:41 +08:00
// 跳转类型
// 1:气泡 2:H5
int32 jumpType = 3;
2021-06-14 01:33:41 +08:00
// 跳转地址
string jumpUrl = 4;
2021-06-14 01:33:41 +08:00
// 文案
string text = 5;
2021-06-14 01:33:41 +08:00
// 二级文案数组
repeated AdSecondFeedbackPanelDto secondaryPanel = 6;
}
2021-06-14 01:33:41 +08:00
// 二级文案
message AdSecondFeedbackPanelDto {
// 屏蔽理由id
int32 reasonId = 1;
// 理由文案
string text = 2;
}
2021-06-14 01:33:41 +08:00
// 开放平台商品
message AdGoodDto {
2021-06-14 01:33:41 +08:00
// 电商商品ID
int64 itemId = 1;
2021-06-14 01:33:41 +08:00
// 电商SKU ID
int64 skuId = 2;
2021-06-14 01:33:41 +08:00
// 店铺ID
int64 shopId = 3;
2021-06-14 01:33:41 +08:00
// SKU库存
int64 skuNum = 4;
}
//
2021-06-14 01:33:41 +08:00
message QualityInfo {
//
string icon = 1;
//
string text = 2;
}
2021-06-14 01:33:41 +08:00
// 广告主信息
message AdverDto {
//
int64 adverId = 1;
//
string adverLogo = 2;
//
string adverName = 3;
//
int32 adverType = 4;
//
string adverPageUrl = 5;
//
string adverDesc = 6;
}