Hi, I am having issues with adding Logo image via PHP library.
I manage to add landscape and square image, but for some reason it doesn't work with Logo image. This is a part of my code with logo instructions: $marketingImageAssetResourceName = self::createImageAsset( $googleAdsClient, $customerId, $options['imageUrl'], 'Marketing Image' ); $squareMarketingImageAssetResourceName = self::createImageAsset( $googleAdsClient, $customerId, $options['squareImageUrl'], 'Square Marketing Image' ); $logoImageAssetRessourceName = self::createImageAsset( $googleAdsClient, $customerId, $options['logoImageUrl'], 'Logo Image' ); // Creates a responsive display ad info. $responsiveDisplayAdInfo = new ResponsiveDisplayAdInfo([ // Sets some basic required information for the responsive display ad. 'headlines' => [new AdTextAsset(['text' => $options['headlines']])], 'long_headline' => new AdTextAsset(['text' => $options['longHeadline']]), 'descriptions' => [new AdTextAsset(['text' => $options['descriptions']])], 'business_name' => $options['businessName'], 'marketing_images' => [ new AdImageAsset(['asset' => $marketingImageAssetResourceName]), ], 'square_marketing_images' => [ new AdImageAsset(['asset' => $squareMarketingImageAssetResourceName]), ], *'logo_images' =>[* *new AdImageAsset(['asset' => $logoImageAssetRessourceName])* * ]*, // Optional: Sets call to action text, price prefix and promotion text. 'call_to_action_text' => $options['callToAction'], ]); Could you please assist with this? Thanks in advance! -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API and Google Ads API Forum" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] 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 and Google Ads API Forum" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/2d4ee6cc-de4d-4731-99e1-58b62e2a48ben%40googlegroups.com.
