-
Notifications
You must be signed in to change notification settings - Fork 43
/
video_aweme_get.go
65 lines (58 loc) · 1.95 KB
/
video_aweme_get.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package file
import (
"encoding/json"
"strconv"
"github.com/bububa/oceanengine/marketing-api/model"
"github.com/bububa/oceanengine/marketing-api/util"
)
// VideoAwemeGetRequest 获取抖音号下的视频 API Request
type VideoAwemeGetRequest struct {
// AdvertiserID 广告主ID
AdvertiserID uint64 `json:"advertiser_id,omitempty"`
// AwemeID 需拉取视频的抖音号
AwemeID uint64 `json:"aweme_id,omitempty"`
// Filtering 视频过滤条件
Filtering *VideoAwemeGetFiltering `json:"filtering,omitempty"`
// Cursor 页码游标值,第一次拉取,无需入参
Cursor int `json:"cursor,omitempty"`
// Count 页面大小,默认值30,限制1-50
Count int `json:"count,omitempty"`
}
// VideoAwemeGetFiltering 筛选条件
type VideoAwemeGetFiltering struct {
//ProductID 商品ID,查询关联商品的相应视频,仅短视频带货场景需入参
ProductID uint64 `json:"product_id,omitempty"`
// AwemeItemURL 抖音主页视频url
AwemeItemURL string `json:"aweme_item_url,omitempty"`
}
// Encode implement GetRequest interface
func (r VideoAwemeGetRequest) Encode() string {
values := util.GetUrlValues()
values.Set("advertiser_id", strconv.FormatUint(r.AdvertiserID, 10))
values.Set("aweme_id", strconv.FormatUint(r.AwemeID, 10))
if r.Filtering != nil {
filter, _ := json.Marshal(r.Filtering)
values.Set("filtering", string(filter))
}
if r.Cursor > 0 {
values.Set("cursor", strconv.Itoa(r.Cursor))
}
if r.Count > 0 {
values.Set("count", strconv.Itoa(r.Count))
}
ret := values.Encode()
util.PutUrlValues(values)
return ret
}
// VideoAwemeGetResponse 获取抖音号下的视频 API Response
type VideoAwemeGetResponse struct {
model.BaseResponse
Data *VideoAwemeGetResponseData `json:"data,omitempty"`
}
// VideoAwemeGetResponseData json返回值
type VideoAwemeGetResponseData struct {
// List 视频列表
List []Video `json:"video_list,omitempty"`
// PageInfo 分页信息
PageInfo *model.PageInfo `json:"page_info,omitempty"`
}