Код: Выделить всё
procedure TForm1.Button4Click(Sender: TObject);
var
data:TStringlist;
begin
http.Request.Host:='steamcommunity.com';
http.Request.Connection:='keep-alive';
http.Request.ContentLength:=68;
http.Request.Accept:='*/*';
http.Request.UserAgent:='Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.103';
http.Request.ContentType:='application/x-www-form-urlencoded; charset=UTF-8';
http.Request.Referer:='http://steamcommunity.com/market/listings/570/Bobusang%27s%20Fist%20of%20the%20Predator%20Owl';
http.Request.AcceptEncoding:='gzip,deflate';
http.Request.AcceptLanguage:='ru-RU,ru;q=0.8,en-US;q=0.6,en;q=0.4';
data:=TStringList.Create;
data.add('sessionid='+sessionid);
data.add('currency=5');
data.add('subtotal=12');
data.add('fee=2');
data.add('total=14');
HTTP.Post('https://steamcommunity.com/market/buylisting/'+Edit4.Text,data);
end;
