Documentation ¶
Overview ¶
Package aweme 抖音号相关
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AuthorizedGetFilter ¶
type AuthorizedGetFilter struct { // SearchKeyWord 根据抖音号id和名称进行搜索 SearchKeyWord string `json:"search_key_word,omitempty"` }
type AuthorizedGetRequest ¶
type AuthorizedGetRequest struct { // LocalAccountID 本地推广告主ID LocalAccountID uint64 `json:"local_account_id,omitempty"` // Filtering 过滤器 Filtering *AuthorizedGetFilter `json:"filtering,omitempty"` // Page 页码 Page int `json:"page,omitempty"` // PageSize 页面大小 PageSize int `json:"page_size,omitempty"` // MarketingGoal 抖音号使用场景,允许值 // LIVE 直播 // VIDEO_IMAGE 短视频/图文 MarketingGoal local.MarketingGoal `json:"marketing_goal,omitempty"` }
AuthorizedGetRequest 获取本地推创编可用抖音号 API Request
func (AuthorizedGetRequest) Encode ¶
func (r AuthorizedGetRequest) Encode() string
Encode implements GetRequest interface
type AuthorizedGetResponse ¶
type AuthorizedGetResponse struct { model.BaseResponse // Data json返回值 Data *AuthorizedGetResult `json:"data,omitempty"` }
AuthorizedGetResponse 获取本地推创编可用抖音号 API Response
type AuthorizedGetResult ¶
type Aweme ¶
type Aweme struct { // AwemeID 抖音号 AwemeID string `json:"aweme_id,omitempty"` // AwemeName 抖音号名称 AwemeName string `json:"aweme_name,omitempty"` // AwemeAvatar 抖音头像 AwemeAvatar string `json:"aweme_avatar,omitempty"` // AuthType 抖音号授权类型,枚举值: // OFFICIAL 官方 // SELF 自运营 // AWEME_COOPERATOR 合作达人 // 不同授权类型的抖音号权限说明: // 官方:支持发布视频到主页(政媒号不支持)、支持选取主页视频投放、支持推广该抖音号的直播间 // 自运营:支持发布视频到主页(政媒号不支持)、支持选取主页视频投放、支持推广该抖音号的直播间 // 合作达人:支持选取主页视频投放、支持推广该抖音号的直播间 AuthType enum.AwemeBindType `json:"auth_type,omitempty"` // AwemeHasUniProm 该抖音号是否有直播roi2计划投放 // 注意:如果该抖音号有直播roi2计划投放,那么该抖音号不可以创建 【标准推广-推直播间-直播间团购购买】 的直播广告 AwemeHasUniProm bool `json:"aweme_has_uni_prom,omitempty"` // CanCreateRoi2Ad 该抖音号是否能创建roi2广告 // marketing_goal=LIVE时返回 CanCreateRoi2Ad bool `json:"can_create_roi2_ad,omitempty"` }
Aweme 抖音号
Click to show internal directories.
Click to hide internal directories.