将关键字出价金额设置为从广告组继承 - Python [英] Set Keyword Bid amount to Inherit from Ad Group - Python

查看:105
本文介绍了将关键字出价金额设置为从广告组继承 - Python的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好,

我正在使用Bing Ads Python SDK将关键字上传到Bing广告组。我在广告组一级设置了搜索出价,我希望该关键字能够为其位数继承该值。文档说,如果出价金额设置为空,则出价将从广告组继承b $ b。 

I am using the Bing Ads Python SDK to upload keywords to a Bing Ad group. I have a search bid set on the Ad Group level and I would like the keyword to inherit that value for its bit amount. The docs say that if the bid amount is set to Null, the bid will be inherited form the ad group. 

我将出价金额设置为无(pythons版本of null)和匹配类型为broad

I set the Bid amount to None (pythons version of null) and the match type to broad

keyword.Bid.Amount=None

keyword.MatchType = '广泛'

keyword.MatchType='Broad'

我收到以下错误:

code: 1543

关键字对象不包含指定匹配类型的有效和非空出价。

The Keyword object does not contain a valid and non-null bid for the specified match type.


有谁知道怎么做设置要从Python中的广告组搜索出价继承的出价金额? 

Does anyone know how to set the Bid amount to inherit from the Ad group search bid in Python? 

推荐答案

很棒的问题。

您可能正在观察我在我的复制品中发现的内容,即SUDS生成的SOAP请求消息中缺少Bid。

Likely you are observing what I found in my repro i.e., Bid is missing from the SUDS generated SOAP request message.

<ns0:UpdateKeywordsRequest>
  <ns0:AdGroupId>***</ns0:AdGroupId>
    <ns0:Keywords>
      <ns0:Keyword>
        <ns0:Id>***</ns0:Id>
      </ns0:Keyword>
    </ns0:Keywords>
</ns0:UpdateKeywordsRequest>

这是到期日查询被跟踪的SUDS库问题
here
。已在
中注明示例
,也应记录在更可见的地方,例如,
此处
(我们会对其进行跟进)。 

This is due to a SUDS library issue that is tracked here. It has been noted in this example, and should also be documented somewhere more visible e.g., here (we will follow up on it). 

作为解决方法,您可以使用
BulkServiceManager
更新出价,或删除/添加一个新关键字。

As a workaround you could either use BulkServiceManager to update the bid, or delete/add a new keyword.

我希望这会有所帮助,

Eric


这篇关于将关键字出价金额设置为从广告组继承 - Python的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆