本文介绍了getCampaignByIds无法解析我的广告系列ID数组的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用bingads SDK 10.4.6 for python。

I am using bingads SDK 10.4.6 for python.

我尝试从给定的广告系列获取一部分广告系列帐户,按广告系列ID过滤如下:

I try to get a subset of campaigns from a given account, filtering by campaignIds as follows:

getCampaignsByIds('accountID',[1234,12344,12333]," SearchAndContent"),我有以下错误: 

getCampaignsByIds('accountID', [1234,12344,12333], "SearchAndContent"), I have the following error : 

"反序列化System.Int64 []"类型的对象时出错。预期结束元素'CampaignIds',找到文字'1234' 

"There was an error deserializing the object of type System.Int64[]". End element 'CampaignIds' expected, found text '1234' 

显然是类型问题,但我无法处理它。 

Obviously a problem of type, but I have been unable to deal with it. 

推荐答案

这是一个代码示例:

请告诉我如果您有任何后续问题。

Please let me know if you have any follow up questions.

祝你好运,

Eric


这篇关于getCampaignByIds无法解析我的广告系列ID数组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-18 22:01