skip to Main Content

Upload Offline Conversion migration to V9 – PHP Versions

I used to upload offline conversion using following code in v201809 version as provided at https://github.com/googleads/googleads-php-lib/blob/master/examples/AdWords/v201809/Remarketing/UploadOfflineConversions.php $oAuth2Credential = (new OAuth2TokenBuilder())->fromFile()->build(); $session = (new AdWordsSessionBuilder())->fromFile()->withOAuth2Credential($oAuth2Credential)->withClientCustomerId($customerid)->enablePartialFailure()->build(); $adWordsServices = new AdWordsServices(); $offlineConversionService = $adWordsServices->get($session, OfflineConversionFeedService::class); $conversionName="OfflineConv"; $feed = new OfflineConversionFeed(); $feed->setConversionName($conversionName); $feed->setConversionTime($conversionTime); $feed->setConversionValue($conversionValue);…

VIEW QUESTION

How to install google-ads (grpcio) in AWS ec2 – Nginx

I want to use google-ads in AWS EC2. I try to install it with, pip install google-ads but this throws an error. Error: ssm-user@ip-172-31-47-200:/var/snap/amazon-ssm-agent/3552$ pip install pip install google-ads Collecting pip Downloading https://files.pythonhosted.org/packages/47/ca/f0d790b6e18b3a6f3bd5e80c2ee4edbb5807286c21cdd0862ca933f751dd/pip-21.1.3-py3-none-any.whl (1.5MB) 100% |████████████████████████████████| 1.6MB 871kB/s Collecting install…

VIEW QUESTION
Back To Top
Search