• Модуль: seo
  • Путь к файлу: ~/bitrix/modules/seo/lib/leadads/services/accountvkontakte.php
  • Класс: BitrixSeoLeadAdsServicesAccountVkontakte
  • Вызов: AccountVkontakte::registerCode
private function registerCode(int $confirmCode, string $resource)
{
	$response = new RetargetingServicesResponseVkontakte();

	$isRegistered = $this->registerWebHook($confirmCode,
		[
			'SECURITY_CODE' => Random::getString(32),
			'CONFIRMATION_CODE' => $resource,
		]
	);

	if (!$isRegistered)
	{
		$response->addError(new Error('Can not register web hook.'));

		return $response;
	}

	return $response;
}