• Модуль: seo
  • Путь к файлу: ~/bitrix/modules/seo/lib/leadads/services/accountvkontakte.php
  • Класс: BitrixSeoLeadAdsServicesAccountVkontakte
  • Вызов: AccountVkontakte::checkNewAuthInfo
public function checkNewAuthInfo(): bool
{
	$response = $this->checkAuthInfo();
	if (!$response->isSuccess())
	{
		return true;
	}
	$data = $response->getData();
	if (isset($data['hasAuthInfo']) && isset($data['hasProfile']))
	{
		if (!$data['hasAuthInfo'])
		{
			return true;
		}

		return $data['hasProfile'];
	}

	return true;
}