• Модуль: socialservices
  • Путь к файлу: ~/bitrix/modules/socialservices/classes/general/mailru2.php
  • Класс: CMailRu2Interface
  • Вызов: CMailRu2Interface::GetCurrentUser
public function GetCurrentUser()
{
	if ($this->access_token === false)
	{
		return false;
	}

	$http = new HttpClient();
	$http->setTimeout($this->httpTimeout);

	$result = $http->get(self::USER_INFO_URL . '?access_token=' . $this->access_token);

	try
	{
		return Json::decode($result);
	}
	catch (BitrixMainArgumentException $e)
	{
		return false;
	}
}