• Модуль: socialservices
  • Путь к файлу: ~/bitrix/modules/socialservices/classes/general/bitrix24net.php
  • Класс: CSocServBitrix24Net
  • Вызов: CSocServBitrix24Net::getEntityOAuth
public function getEntityOAuth($code = false)
{
	if(!$this->entityOAuth)
	{
		$this->entityOAuth = new CBitrix24NetOAuthInterface();
	}

	if($code !== false)
	{
		$this->entityOAuth->setCode($code);
	}

	return $this->entityOAuth;
}