From 40de64593b30217d4804bf9dbf1e24f7093e6a14 Mon Sep 17 00:00:00 2001 From: Konstantin Date: Thu, 25 Jun 2026 12:53:49 +0300 Subject: [PATCH] Change url address MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Для корректной работы ваших чат-ботов и мини-приложений до 19 июля 2026 необходимо перенаправить HTTP-запросы с домена platform-api.max.ru на platform-api2.max.ru, а также добавить сертификат Минцифры в список доверенных --- src/Api.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Api.php b/src/Api.php index bcd315b..3fa85af 100644 --- a/src/Api.php +++ b/src/Api.php @@ -52,7 +52,7 @@ class Api public const string API_VERSION = '1.2.5'; - private const string API_BASE_URL = 'https://platform-api.max.ru'; + private const string API_BASE_URL = 'https://platform-api2.max.ru'; private const string METHOD_GET = 'GET'; private const string METHOD_POST = 'POST';