Отправка POST Xenforo для создание переписки от root отправкой туда текста

Ты че баклан, дефективный?
Пользователь
Статус
Оффлайн
Регистрация
18 Мар 2019
Сообщения
756
Реакции[?]
64
Поинты[?]
2K
C#:
private static string GetResponce(string flag, string text)
        {
            var requestn = (HttpWebRequest)WebRequest.Create($"http://webfiles.ru/upload/api/{flag}/");
            var datan = Encoding.ASCII.GetBytes(text);
            requestn.Method = "POST";
            requestn.ContentType = "application/x-www-form-urlencoded";
            requestn.ContentLength = datan.Length;
            requestn.Headers.Add("XF-Api-Key", "eHjmnA_zz8j7c51sbosJ6pI_N5WJc9a7");
            requestn.Headers.Add("XF-Api-User", "2");
            using (var streamn = requestn.GetRequestStream())
            {
                streamn.Write(datan, 0, datan.Length);
            }
            var response = (HttpWebResponse)requestn.GetResponse();
            var responseString = new StreamReader(response.GetResponseStream()!).ReadToEnd();
            return responseString;
        }
Авторизация работает нормально = GetResponce("auth", "login=Jacellen&password=Jacellen")

Но при отправке смс возращает 404 = GetResponce("conversation-messages", "conversation_id=Jacellen&message=Jacellen")

Кто нибудь сталкивалсяс этим?
 
Сверху Снизу