Я пытаюсь добавить файл img, .dat и др. c. Discord WebHook Сообщение. (Локальные файлы).
Вот мой код;
Часть содержимого:
string url = "webhook"
string mesaj "example";
NameValueCollection message = new NameValueCollection() {
{ "username", "Beko BOT" },
{ "avatar_url", "https://i.ibb.co/qrcrHP4/B-Kare.png"},
{ "content", mesaj }
};
Http.Post(url, message);
Отправляемая часть:
public class Http
{
public static byte[] Post(string uri, NameValueCollection pairs)
{
byte[] numArray;
using (WebClient webClient = new WebClient())
{
numArray = webClient.UploadValues(uri, pairs);
}
return numArray;
}
}
Спасибо за помощь!