namespace Google\AdsApi\Examples\AdWords\v201809\Remarketing;
require __DIR__ . '/vendor/autoload.php';
use Google\AdsApi\AdWords\AdWordsServices;
use Google\AdsApi\AdWords\AdWordsSession;
use Google\AdsApi\AdWords\AdWordsSessionBuilder;
use Google\AdsApi\AdWords\v201809\cm\OfflineCallConversionFeed;
use Google\AdsApi\AdWords\v201809\cm\OfflineCallConversionFeedOperation;
use Google\AdsApi\AdWords\v201809\cm\OfflineCallConversionFeedService;
use Google\AdsApi\AdWords\v201809\cm\Operator;
use Google\AdsApi\Common\OAuth2TokenBuilder;
/**
* This code example imports offline call conversion values for calls related
* to the ads in your account.
*/
class UploadOfflineCallConversions
{
const CALLER_ID = '+6502531234';
// For times use the format yyyyMMdd HHmmss tz. For more details on formats,
// see:
// For time zones, see:
const CALL_START_TIME = '20190427 010200 America/New_York';
const CONVERSION_NAME = '5cc2fbb9e3a5e';
const CONVERSION_TIME = '20190427 010200 America/New_York';
const CONVERSION_VALUE = '100.00';
public static function runExample(
AdWordsServices $adWordsServices,
AdWordsSession $session,
$callerId,
$callStartTime,
$conversionName,
$conversionTime,
$conversionValue
) {
$offlineCallConversionService = $adWordsServices->get(
$session,
OfflineCallConversionFeedService::class
);
// Associate offline call conversions with the existing named conversion
// tracker. If this tracker was newly created, it may be a few hours before
// it can accept conversions.
$feed = new OfflineCallConversionFeed();
$feed->setCallerId($callerId);
$feed->setCallStartTime($callStartTime);
$feed->setConversionName($conversionName);
$feed->setConversionTime($conversionTime);
$feed->setConversionValue($conversionValue);
$offlineCallConversionOperations = [];
$offlineCallConversionOperation = new OfflineCallConversionFeedOperation();
$offlineCallConversionOperation->setOperator(Operator::ADD);
$offlineCallConversionOperation->setOperand($feed);
$offlineCallConversionOperations[] = $offlineCallConversionOperation;
// This example uploads only one call conversion, but you can upload
// multiple call conversions by passing additional operations.
$result = $offlineCallConversionService->mutate($offlineCallConversionOperations);
$feed = $result->getValue()[0];
printf(
"Uploaded offline call conversion value of '%s' for caller ID '%s'.\n",
$feed->getConversionValue(),
$feed->getCallerId()
);
}
public static function main()
{
// Generate a refreshable OAuth2 credential for authentication.
$oAuth2Credential = (new OAuth2TokenBuilder())->fromFile()->build();
// Construct an API session configured from a properties file and the
// OAuth2 credentials above.
$session = (new AdWordsSessionBuilder())->fromFile()->withOAuth2Credential($oAuth2Credential)->build();
self::runExample(
new AdWordsServices(),
$session,
self::CALLER_ID,
self::CALL_START_TIME,
self::CONVERSION_NAME,
self::CONVERSION_TIME,
floatval(self::CONVERSION_VALUE)
);
}
}
UploadOfflineCallConversions::main();