• Модуль: rest
  • Путь к файлу: ~/bitrix/modules/rest/classes/general/rest.php
  • Класс: CRestServer
  • Вызов: CRestServer::getAuthScope
public function getAuthScope()
{
	if ($this->authScope == null)
	{
		$this->authScope = array();

		$authData = $this->getAuthData();
		$this->authScope = explode(',', $authData['scope']);
	}

	return $this->authScope;
}