Skip to content

Commit

Permalink
Merge branch 'release/v1.23.9'
Browse files Browse the repository at this point in the history
  • Loading branch information
bububa committed Apr 2, 2024
2 parents 13094b2 + 6ad1737 commit 94d30bb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion marketing-api/OCEANENGINE.md
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@
- 获取快投推荐出价系数 [ tools.SearchBidRatioGet(clt *core.SDKClient, accessToken string, req *tools.SearchBidRatioGetRequest) (float64, error) ]
- 查询白名单能力 [ GrayGet(clt *core.SDKClient, accessToken string, req *tools.GrayGetRequest) ([]tools.GrayItem, error) ]
- 查询建议出价(巨量广告升级版) [ tools.v3.BidSuggest(clt *core.SDKClient, accessToken string, req *v3.BidSuggestRequest) (*tools.BidSuggest, error) ]
- 获取绑定的抖音号 [ IesAccountSearch(clt *core.SDKClient, accessToken string, req *tools.IesAccountSearchRequest) (*tools.IesAccount, error) ]
- 获取绑定的抖音号 [ IesAccountSearch(clt *core.SDKClient, accessToken string, req *tools.IesAccountSearchRequest) ([]tools.IesAccount, error) ]
- 应用管理 (tools/appmanagement)
- 查询游戏信息 [ BookingGet(clt *core.SDKClient, accessToken string, req *appmanagement.AppListRequest) (*appmanagement.AppListResponseData, error) ]
- 查询应用信息 [ AppGet(clt *core.SDKClient, accessToken string, req *appmanagement.AppListRequest) (*appmanagement.AppListResponseData, error) ]
Expand Down
2 changes: 1 addition & 1 deletion marketing-api/api/tools/ies_account_search.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

// IesAccountSearch 获取绑定的抖音号
// 此接口可以帮助查询广告主账户当前绑定的抖音号信息
func IesAccountSearch(clt *core.SDKClient, accessToken string, req *tools.IesAccountSearchRequest) (*tools.IesAccount, error) {
func IesAccountSearch(clt *core.SDKClient, accessToken string, req *tools.IesAccountSearchRequest) ([]tools.IesAccount, error) {
var resp tools.IesAccountSearchResponse
if err := clt.Get("2/tools/ies_account_search/", req, &resp, accessToken); err != nil {
return nil, err
Expand Down
2 changes: 1 addition & 1 deletion marketing-api/model/tools/ies_account_search.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func (r IesAccountSearchRequest) Encode() string {
// IesAccountSearchResponse 获取绑定的抖音号 API Response
type IesAccountSearchResponse struct {
model.BaseResponse
Data *IesAccount `json:"data,omitempty"`
Data []IesAccount `json:"data,omitempty"`
}

// IesAccount 绑定的抖音号
Expand Down

0 comments on commit 94d30bb

Please sign in to comment.