• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/sync/office365/apiclient.php
  • Класс: BitrixCalendarSyncOffice365ApiClient
  • Вызов: ApiClient::prepareResponse
protected function prepareResponse()
{
	$contentType = $this->httpClient->getHeaders()->getContentType();

	if ($contentType === 'multipart/mixed')
	{
		$response = $this->multipartDecode(
			$this->httpClient->getResult(),
			$this->httpClient->getHeaders()->getBoundary()
		);
	}
	else
	{
		$response = $this->httpClient->getResult()
			? Json::decode($this->httpClient->getResult())
			: [];
	}

	return $response;
}