Hi,

Sorry, I was a bit off-base in my recommendation.

The type of the *sitelinkFinalUrls* field is UrlList 
<https://developers.google.com/adwords/api/docs/reference/v201506/CampaignExtensionSettingService.UrlList>,
 
so the code should actually be:

  sitelink1 = {
      'xsi_type': 'SitelinkFeedItem',
      'sitelinkText': 'Store Hours',
      'sitelinkFinalUrls': {'urls': ['http://www.example.com/storehours']}
  }

Could you give that a try and let me know if you still encounter errors?

Thanks,
Josh, AdWords API Team

On Tuesday, September 1, 2015 at 5:00:50 AM UTC-4, A Neuen wrote:
>
> Here is the message the library sents:
> <?xml version="1.0" encoding="UTF-8"?>
> <SOAP-ENV:Envelope
>     xmlns:ns0="http://schemas.xmlsoap.org/soap/envelope/";
>     xmlns:ns1="https://adwords.google.com/api/adwords/cm/v201502";
>     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
>     xmlns:tns="https://adwords.google.c
> om/api/adwords/cm/v201502"
>     xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/";>
>     <SOAP-ENV:Header>
>         <tns:RequestHeader>
>             <tns:clientCustomerId>xxxx</tns:clientCustomerId>
>             <tns:developerToken>xxxx</tns:developerToken>
>             <tns:userAgent>my ua</tns:userAgent>
>             <tns:validateOnly>false</tns:validateOnly>
>             <tns:partialFailure>false</tns:partialFailure>
>         </tns:RequestHeader>
>     </SOAP-ENV:Header>
>     <ns0:Body>
>         <ns1:mutate>
>             <ns1:operations>
>                 <ns1:operator>ADD
>                 </ns1:operato
> r>
>                 <ns1:operand>
>                     <ns1:campaignId>xxxx</ns1:campaignId>
>                     <ns1:extensionType>SITELINK</ns1:extensionType>
>                     <ns1:extensionSetting>
>                         <ns1:extensions xsi:type="ns1:SitelinkFeedItem">
>                             <ns1:ExtensionFeedItem.Type>SitelinkFeedItem
> </ns1:ExtensionFeedItem.Type>
>                             <ns1:sitelinkTe
> xt>Kontakt
>                             </ns1:sitelinkText>
>                             <ns1:sitelinkFinalUrls>http://xxxx.de
> </ns1:sitelinkFinalUrls>
>                         </ns1:extensions>
>                         <ns1:extensions xsi:type="ns1:SitelinkFeedItem">
>                             <ns1:ExtensionFeedItem.Type>SitelinkFeedItem
> </ns1:ExtensionFeedItem.Type>
>                             <ns1:sitelinkTex
> t>Dienstleistungen
>                             </ns1:sitelinkText>
>                             <ns1:sitelinkFinalUrls>http://xxxx.de
> </ns1:sitelinkFinalUrls>
>                         </ns1:extensions>
>                         <ns1:extensions xsi:type="ns1:SitelinkFeedItem">
>                             <ns1:ExtensionFeedItem.Type>SitelinkFeedItem
> </ns1:ExtensionFeedItem.Type>
>                             <ns1:sit
> elinkText>Dienstleister
>                             </ns1:sitelinkText>
>                             <ns1:sitelinkFinalUrls>http://xxxx.de
> </ns1:sitelinkFinalUrls>
>                         </ns1:extensions>
>                         <ns1:extensions xsi:type="ns1:SitelinkFeedItem">
>                             <ns1:ExtensionFeedItem.Type>SitelinkFeedItem
> </ns1:ExtensionFeedItem.Type>
>                             <ns1:sitelinkText>Gebäudereinigung
>                             </ns1:sitelinkText>
>                             <ns1:sitelinkFinalUrls>http://xxxx.de
> </ns1:sitelinkFinalUrls>
>                         </ns1:extensions>
>                     </ns1:extensionSetting>
>                 </ns1:operand>
>             </ns1:operations>
>         </ns1:mutate>
>     </ns0:Body>
> </SOAP-ENV:Envelope>
>
>
> On Tuesday, 1 September 2015 10:45:54 UTC+2, A Neuen wrote:
>>
>> OK I what you suggested:
>> 1. replaced sitelinkUrl with sitelinkFinalUrls
>> 2. instead of a string I pass an array ( 'sitelinkFinalUrls': ['
>> http://www.awesome.com']
>>
>>
>> I get a an exception:
>>
>> Traceback (most recent call last):
>>   File ".../app/utils/actions.py", line 110, in perform
>>     ret = self.callback(self.order, *self.args)
>>   File ".../app/scheduler/funcs.py", line 80, in do
>>     d = adw.create_sitelinks(order)
>>   File ".../app/services/adword_service/adwordwrapper.py", line 235, in 
>> create_sitelinks
>>     response = campaign_extension_setting_service.mutate([operation])
>>   File 
>> ".virtualenvs/adwiz/lib/python2.7/site-packages/googleads/common.py", 
>> line 296, in MakeSoapRequest
>>     for arg in args])
>>   File 
>> "/home/lawalpha9marketi/.virtualenvs/adwiz/lib/python2.7/site-packages/suds/client.py"
>> , line 542, in __call__
>>     return client.invoke(args, kwargs)
>>   File virtualenvs/adwiz/lib/python2.7/site-packages/suds/client.py", 
>> line 602, in invoke
>>     result = self.send(soapenv)
>>   File ".virtualenvs/adwiz/lib/python2.7/site-packages/suds/client.py", 
>> line 649, in send
>>     result = self.failed(binding, e)
>>   File ".virtualenvs/adwiz/lib/python2.7/site-packages/suds/client.py", 
>> line 702, in failed
>>     r, p = binding.get_fault(reply)
>>   File adwiz/lib/python2.7/site-packages/suds/bindings/binding.py", line 
>> 265, in get_fault
>>     raise WebFault(p, faultroot)
>> WebFault: Server raised fault: 'Unmarshalling Error: 
>> cvc-complex-type.2.3: Element 'ns1:sitelinkFinalUrls' cannot have 
>> character [children], because the type's content type is element-only. '
>>
>>
>>
>> On Monday, 31 August 2015 22:35:37 UTC+2, Josh Radcliff (AdWords API 
>> Team) wrote:
>>>
>>> Hi,
>>>
>>> It looks like that example is outdated. I'll speak with the owner of 
>>> that library to have that fixed.
>>>
>>> In the meantime, could you try making the following changes and let me 
>>> know if you still run into errors?
>>>
>>>    1. Specify sitelinkFinalUrls 
>>>    
>>> <https://developers.google.com/adwords/api/docs/reference/v201506/CampaignExtensionSettingService.SitelinkFeedItem#sitelinkFinalUrls>
>>>  instead 
>>>    of *sitelinkUrl*
>>>    2. Set *sitelinkFinalUrls* to an *array* containing your final URL
>>>
>>> Thanks,
>>> Josh, AdWords API Team
>>>
>>> On Monday, August 31, 2015 at 2:49:03 PM UTC-4, A Neuen wrote:
>>>>
>>>> I am getting the same error using version v201502:
>>>>
>>>>
>>>> Are the examples here:
>>>>
>>>> https://github.com/googleads/googleads-python-lib/blob/master/examples/adwords/v201502/extensions/add_site_links.py#L55
>>>>
>>>> wrong?
>>>>
>>>> I tried to replace with sitelinkFinalUrls 
>>>> <https://developers.google.com/adwords/api/docs/reference/v201506/CampaignExtensionSettingService.SitelinkFeedItem#sitelinkFinalUrls>
>>>>  as 
>>>> suggested in an answer and I get the same as a user below:
>>>> suds.WebFault: Server raised fault: 'Unmarshalling Error: 
>>>> cvc-complex-type.2.3: Element 'ns0:sitelinkFinalUrls' cannot have 
>>>> character 
>>>> [children], because the type's content type is element-only. '
>>>>
>>>>
>>>> On Tuesday, 14 July 2015 08:35:16 UTC+2, MCC Test wrote:
>>>>>
>>>>> Hello All,
>>>>>
>>>>> From Past few days I am getting error like *WRITE_ACCESS_DENIED* while 
>>>>> posting new sitelinks via adwords api.I am using 
>>>>> *AdGroupExtensionSettingService 
>>>>> *to create new sitelinks under adgroups.
>>>>>
>>>>> "[Jul 14 2015 02:23:27.000000 - ERROR] effectiveUser=xxx-xxx-xxxx 
>>>>> service=AdGroupExtensionSettingService method=mutate operators={ADD: 4} 
>>>>> operations=4 units= server=adwords.google.com isFault=true 
>>>>> faultMessage=[EntityAccessDenied.WRITE_ACCESS_DENIED @ 
>>>>> operations[0].operand.extensionSetting.extensions, 
>>>>> EntityAccessDenied.WRITE_ACCESS_DENIED @ 
>>>>> operations[1].operand.extensionSetting.extensions, 
>>>>> EntityAccessDenied.WRITE_ACCESS_DENIED @ 
>>>>> operations[2].operand.extensionSetting.extensions, 
>>>>> EntityAccessDenied.WRITE_ACCESS_DENIED @ 
>>>>> operations[3].operand.extensionSetting.extensions]"
>>>>>
>>>>> Before few days it was all working good suddenly recently started 
>>>>> getting error.
>>>>>
>>>>> Please look into this.
>>>>>
>>>>> Thanks,
>>>>> Ronak Shah
>>>>>
>>>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/0a7eb3b0-b2ad-4623-a8ea-3f4fc6b43fb8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to