You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I am using BatchJobUtils to create ad group extension setting.
The add operations works fine and got response correctly. <mutateResponse xmlns="https://adwords.google.com/api/adwords/cm/v201609"> ... ... <rval> <result> <AdGroupExtensionSetting> <extensionType>CALL</extensionType> <extensionSetting> <extensions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CallFeedItem"> ... ... </extensions> <platformRestrictions>NONE</platformRestrictions> </extensionSetting> </AdGroupExtensionSetting> </result> <index>55</index> </rval> ... ... </mutateResponse>
But I got this error converting xml to object
Cannot use object of type CallFeedItem as array
in PATH/TO/UTIL/XmlDeserializer.php on line 105
Thanks in advance.
Cheers.
The text was updated successfully, but these errors were encountered:
We're working on the fix and will push the fix later.
If you wish to fix this by yourself first, please go to BatchJobClasses and add $AdGroupExtensionSetting as a member variable of the class Operand like this:
Hi,
I am using BatchJobUtils to create ad group extension setting.
The add operations works fine and got response correctly.
<mutateResponse xmlns="https://adwords.google.com/api/adwords/cm/v201609"> ... ... <rval> <result> <AdGroupExtensionSetting> <extensionType>CALL</extensionType> <extensionSetting> <extensions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CallFeedItem"> ... ... </extensions> <platformRestrictions>NONE</platformRestrictions> </extensionSetting> </AdGroupExtensionSetting> </result> <index>55</index> </rval> ... ... </mutateResponse>
But I got this error converting xml to object
Cannot use object of type CallFeedItem as array
in PATH/TO/UTIL/XmlDeserializer.php on line 105
Thanks in advance.
Cheers.
The text was updated successfully, but these errors were encountered: