0

I need build an application to get stock exchange data on web. For this, i need get page code and sometimes send requests (post and get). I'm trying to make something like a bot. Could somebody help me please?

dthorpe
  • 35,318
  • 5
  • 75
  • 119
Thiago Melo
  • 1,157
  • 1
  • 14
  • 31
  • There are several examples of how to do this (using Delphi and the WinInet part of the Windows API) at SO already. – Andreas Rejbrand Jul 07 '11 at 18:31
  • I'm sorry, i didn't find it, could you please send me the link? Is possible delete my question? – Thiago Melo Jul 07 '11 at 18:33
  • http://stackoverflow.com/questions/2977720/how-to-send-a-http-post-request-in-delphi-2010-using-wininet, http://stackoverflow.com/questions/1823542/how-to-send-a-http-post-request-in-delphi-using-wininet-api – Andreas Rejbrand Jul 07 '11 at 18:39

1 Answers1

6

Delphi ships with Indy, which has TIdHTTP and TIdCookieManager components for handling HTTP requests and replies.

Remy Lebeau
  • 555,201
  • 31
  • 458
  • 770