• Модуль: seo
  • Путь к файлу: ~/bitrix/modules/seo/lib/retargeting/services/accountgoogle.php
  • Класс: Bitrix\Seo\Retargeting\Services\AccountGoogle
  • Вызов: AccountGoogle::getProfile
public function getProfile()
{
	$response = $this->request->send(array(
		'methodName' => 'retargeting.profile',
		'parameters' => array()
	));

	if ($response->isSuccess())
	{
		$data = $response->fetch();
		return array(
			'ID' => $data['ID'],
			'NAME' => $data['NAME'],
			'LINK' => '',
			'PICTURE' => $data['PICTURE'],
		);
	}

	return null;
}