0

因此,我查看了 Microsoft::AdCenter 模块的 perldoc,它显示了如何创建关键字对象的示例:

~$ perldoc Microsoft::AdCenter

#Create a Keyword object
my $keyword = Microsoft::AdCenter::V7::CampaignManagementService::Keyword->new
           ->Text("some text")
           ->BroadMatchBid(Microsoft::AdCenter::V7::CampaignManagementService::Bid->new->Amount(0.1))
           ->ExactMatchBid(Microsoft::AdCenter::V7::CampaignManagementService::Bid->new->Amount(0.1)); 

但是,这是否违反了每个关键字只使用一种匹配类型的新政策?

广告系列管理更改:

“以前,您将创建一个关键字对象,并为每个要出价的匹配项指定出价值(例如,完全匹配或词组匹配)。如果您没有在关键字级别指定出价值,adCenter使用了在广告组级别指定的默认出价。

现在,您必须为要出价的每种匹配类型创建一个关键字对象。例如,要使用完全匹配和词组匹配对关键字 car 出价,请创建一个 Keyword 对象并将 Text 元素设置为 car,将 ExactMatchBid 元素设置为出价金额。然后,创建第二个 Keyword 对象并将 Text 元素设置为 car,将 PhraseMatchBid 设置为投标金额。添加关键字后,您将获得每个关键字和匹配类型组合的唯一关键字 ID。”

perldoc 似乎不是最新的。这些 perldocs 最后更新于 2011-05-15。perldocs 什么时候更新?

还有什么时候会更新Msdn API 文档

在 Perl 中添加关键字

4

1 回答 1

0

According to Microsoft:

This functionality in which you described where a new keyword object needs to be created for each match type being bid on is being rolled out in gradual phases in the near future. The documentation for this new functionality will be updated to reflect these functionality changes.

Please watch the Microsoft AdCenter API Developer Blog and AdCenter API Release Notes for more updates on this new functionality coming soon.

于 2012-10-10T00:17:24.653 回答