Title says it all, I need to send PUT and DELETE along with POST, GET to a REST API how can I do it?
|
|
Delphi 7 comes with Indy. See the TIdHTTP component and specificly the Get and Put methods. |
|||
|
|
|
|
Or look at the open source Synapse library. There are some simple function calls in the HTTPSend unit which make implementing this completely painless. Just use the sample functions/procedures as your model for the PUT/DELETE. The existing routines already supply the POST and GET. The difference is in the method passed. Personally I have found this library to be perfectly matched for working with REST. Its simple, well written and easy to extend. For example, here is a simple put that sends and receives a stream:
|
||
|
|
|
|
Check out the ICS components, they are suitable for the job. |
||
|
|
