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
  • 34,664
  • 5
  • 74
  • 119
Thiago Melo
  • 1,117
  • 1
  • 12
  • 29
  • 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
  • 505,946
  • 29
  • 409
  • 696