so i´m working on a program that sends a post request to a steamgroup, so that a announcement is created, but sadly it isn´t working well, i captured the "parameters" that are required with TamperData, and more or less tried to replicate it in c#. Didn´t worked so well, maybe someone from here can help me.
var data = new NameValueCollection();
data.Add("sessionID", SteamWeb.SessionId);
data.Add("action", "post");
data.Add("headline", "EXAMPLE HEADLINE");
data.Add("body", "EXAMPLE BODY");
string url = "http://steamcommunity.com/groups/GROUP/announcements/create";
string referer = "http://steamcommunity.com/groups/GROUP/announcements/create";
SteamWeb.Fetch(url, "POST", data, false, referer);
Thats my code, maybe someone can help me.
regards