本文介绍了我可以不指定默认广告组出价吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我添加了一个没有传递/指定默认出价的广告组(BroadMatchBid,ExactMatchBid,PhraseMatchBid和ContentMatchBid),然后我添加了一个只有BroadMatchBid的关键字。

当我看到Web UI,我添加的关键字有ExactMatchBid,PhraseMatchBid和BroadMatchBid。它是否正确?因为我希望它只有BroadMatchBid。

当我将空值传递给广告组默认出价时发生了同样的事情。

这是我的AddAdgroups请求:
< SOAP-ENV:正文>
< ns1:AddAdGroupsRequest>
< ns1:CampaignId> nnnnn< / ns1:CampaignId>
< ns1:广告组>
< ns1:AdGroup>
< ns1:AdDistribution>搜索< / ns1:AdDistribution>
< ns1:BiddingModel>关键字< / ns1:BiddingModel>
< ns1:EndDate xsi :nil =" true" />
< ns1:ExactMatchBid xsi:nil =" true" />< ns1:Id xsi:nil =" true" />

< ns1:LanguageAndRegion> EnglishUnitedStates< / ns1:LanguageAndRegion>
< ns1:Name>示例adgroup12009-09-12 10-09-33& lt; / ns1:名称>
< ns1:NegativeKeywords xsi:nil =" true" />
< ns1:PhraseMatchBid xsi:nil =" true" />
< ns1:PricingModel> Cpc< / ns1:PricingModel>
< ns1:StartDate xsi:nil =" true" />
< / ns1:AdGroup>
< ; / ns1:广告组>
< / ns1:AddAdGroupsRequest>
< / SOAP-ENV:正文>

添加关键字请求

< SOAP-ENV:正文>
< ns1:AddKeywordsRequest>
< ns1:AdGroupId> nnnn< / ns1:AdGroupId>
< ns1:关键字>
< ns1:关键字>
< ns1:BroadMatchBid>< ns1:Amount> 0.5< / ns1:Amount>< / ns1:BroadMatchBid>
< ns1:ContentMatchBid>< ns1:金额xsi:nil =" tr ue" />< / ns1:ContentMatchBid>
< ns1:ExactMatchBid>< ns1:Amount xsi:nil =" true" />< / ns1:ExactMatchBid>
< ; NS1:NegativeKeywords>< NS2:字符串>胶乳< / NS2:字符串>< NS2:字符串>拳击< / NS2:字符串>< NS2:字符串>垒球< / NS2:字符串>< NS2:字符串>棒球< / ns2:字符串>< / ns1:NegativeKeywords>
< ns1:PhraseMatchBid>< ns1:Amount xsi:nil =" true" />< / ns1:PhraseMatchBid>
< ns1:Text> Computer12009-09-12 10-09-58< / ns1:Text>
< / ns1:Keyword>
< / ns1:Keywords>
< ; / ns1:AddKeywordsRequest>
< / SOAP-ENV:正文>

感谢

Hi,
I added an adgroup without passing/specifying default bids (BroadMatchBid, ExactMatchBid, PhraseMatchBid and ContentMatchBid), then I added a keyword with BroadMatchBid only.

When I looked at the Web UI, the keyword that I added have ExactMatchBid , PhraseMatchBid and BroadMatchBid. Is this correct? Because I'm expecting that it will only have BroadMatchBid .

Samething happened when I passed null values to the adgroup default bids.

Here is my AddAdgroups Request:
<SOAP-ENV:Body>
    <ns1:AddAdGroupsRequest>
        <ns1:CampaignId>nnnnn</ns1:CampaignId>
        <ns1:AdGroups>
            <ns1:AdGroup>
                <ns1:AdDistribution>Search</ns1:AdDistribution>
                <ns1:BiddingModel>Keyword</ns1:BiddingModel>
                <ns1:EndDate xsi:nil="true"/>
                <ns1:ExactMatchBid xsi:nil="true"/><ns1:Id xsi:nil="true"/>
                <ns1:LanguageAndRegion>EnglishUnitedStates</ns1:LanguageAndRegion>
                <ns1:Name>Sample adgroup12009-09-12 10-09-33</ns1:Name>
                <ns1:NegativeKeywords xsi:nil="true"/>
                <ns1:PhraseMatchBid xsi:nil="true"/>
                <ns1:PricingModel>Cpc</ns1:PricingModel>
                <ns1:StartDate xsi:nil="true"/>
            </ns1:AdGroup>
        </ns1:AdGroups>
    </ns1:AddAdGroupsRequest>
</SOAP-ENV:Body>


AddKeywords Request

<SOAP-ENV:Body>
    <ns1:AddKeywordsRequest>
        <ns1:AdGroupId>nnnn</ns1:AdGroupId>
        <ns1:Keywords>
            <ns1:Keyword>
                <ns1:BroadMatchBid><ns1:Amount>0.5</ns1:Amount></ns1:BroadMatchBid>
                <ns1:ContentMatchBid><ns1:Amount xsi:nil="true"/></ns1:ContentMatchBid>
                <ns1:ExactMatchBid><ns1:Amount xsi:nil="true"/></ns1:ExactMatchBid>
                <ns1:NegativeKeywords><ns2:string>latex</ns2:string><ns2:string>boxing</ns2:string><ns2:string>softball</ns2:string><ns2:string>baseball</ns2:string></ns1:NegativeKeywords>
                <ns1:PhraseMatchBid><ns1:Amount xsi:nil="true"/></ns1:PhraseMatchBid>
                <ns1:Text>Computer12009-09-12 10-09-58</ns1:Text>
            </ns1:Keyword>
        </ns1:Keywords>
    </ns1:AddKeywordsRequest>
</SOAP-ENV:Body>

Thanks

推荐答案


这篇关于我可以不指定默认广告组出价吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-11 05:24