• Модуль: socialservices
  • Путь к файлу: ~/bitrix/modules/socialservices/classes/general/bitrixseo.php
  • Класс: CBitrixSeoOAuthInterface
  • Вызов: CBitrixSeoOAuthInterface::getClientInfo
public function getClientInfo()
{
	if($this->getAppID() && $this->getAppSecret())
	{
		$res = $this->getTransport()->getClientInfo();

		if(!isset($res['error']))
		{
			return $res['result'];
		}
	}

	return false;
}