我正在测试google adwords api功能(注意:此问题并非直接针对Google Ad Words API)。
我遇到一个错误,说:main()需要2个位置参数但是3个被赋予
继承我所做的事情:
1)创建了一个关键字模型,其中包含关键字Charfield
2)创建了一个具有CharField
类型的表单元素的KeywordForm3)使用HTML页面中的表单通过POST方法获取关键字
4)在POST之后,URL被路由到一个视图keyword_add,它设置了两个值,即
adwords_client = adwords.AdWordsClient.LoadFromStorage()
ad_group_id = 'XXXXXXXXX`
此外,它使用
获取关键字模型的值new_keyword = Keyword.objects.all()
然后使用函数调用
调用位于python脚本中的函数 ad_group_update.main(adwords_client, ad_group_id, new_keyword)
5)python脚本add_keywords中的函数main使用三个参数adwords_client,ad_group_id&来执行。 new_keyword
执行此操作时出现以下错误:
1)error while executing main()
除了这个错误,我在代码中还有另一个问题:
from googleads import adwords
AD_GROUP_ID = 'INSERT_AD_GROUP_ID_HERE'
def main(client, ad_group_id, keyword):
# Initialize appropriate service.
ad_group_criterion_service = client.GetService(
'AdGroupCriterionService', version='v201710')
# Construct keyword ad group criterion object.
keyword1 = {
'xsi_type': 'BiddableAdGroupCriterion',
'adGroupId': ad_group_id,
'criterion': {
'xsi_type': 'Keyword',
'matchType': 'BROAD',
'text': 'MARS'
},
# These fields are optional.
'userStatus': 'PAUSED',
'finalUrls': {
'urls': ['http://example.com/keyword']
}
}
keyword2 = {
'xsi_type': 'NegativeAdGroupCriterion',
'adGroupId': ad_group_id,
'criterion': {
'xsi_type': 'Keyword',
'matchType': 'EXACT',
'text': 'pluto'
}
}
# Construct operations and add ad group criteria.
operations = [
{
'operator': 'ADD',
'operand': keyword1
},
{
'operator': 'ADD',
'operand': keyword2
}
]
ad_group_criteria = ad_group_criterion_service.mutate(
operations)['value']
# Display results.
for criterion in ad_group_criteria:
print(('Keyword ad group criterion with ad group id "%s", criterion id '
'"%s", text "%s", and match type "%s" was added.'
% (criterion['adGroupId'], criterion['criterion']['id'],
criterion['criterion']['text'],
criterion['criterion']['matchType'])))
if __name__ == '__main__':
# Initialize client object.
adwords_client = adwords.AdWordsClient.LoadFromStorage()
main(adwords_client, AD_GROUP_ID, )
如何使用参数new_keyword更新关键字的文本元素?
答案 0 :(得分:0)
在您的代码中
if __name__ == '__main__':
# Initialize client object.
adwords_client = adwords.AdWordsClient.LoadFromStorage()
main(adwords_client, AD_GROUP_ID, )
你传递了2个参数,但def main(__, __, __)
有3个参数。
main(adwords_client, AD_GROUP_ID, )
这就是你收到错误的原因。