Re: [fpc-pascal] Using REST based Services

2018-10-08 Thread Marc Santhoff
Hello Alex, sounds very interesting, but in this case I'm only the user of an API. Look there: http://tika.apache.org/ Tika will run as a service and my task is to stick files in an get the contents back. So nothing to debug regarding the API on my side. Thank you anyway, Marc On Mon, 2018-

Re: [fpc-pascal] Using REST based Services

2018-10-07 Thread Alexander Grotewohl
A bit off topic for the list but I've used a program called "Insomnia" which is a client for debugging REST APIs and it was incredibly handy. Especially so you don't try everything under the sun before, for example, realizing your API key is incorrect. Alex On 10/7/2018 4:03 PM, Marc Santhof

Re: [fpc-pascal] Using REST based Services

2018-10-07 Thread Marc Santhoff
On Sun, 2018-10-07 at 00:23 +0200, Michael Van Canneyt wrote: > > On Sat, 6 Oct 2018, Marc Santhoff wrote: > > > Hi, > > > > being rather agnostic regarding web techniques I have to ask: > > > > What module or unit is best for being used when calling web services? > > fphttpclient is what you

Re: [fpc-pascal] Using REST based Services

2018-10-06 Thread Michael Van Canneyt
On Sat, 6 Oct 2018, Marc Santhoff wrote: Hi, being rather agnostic regarding web techniques I have to ask: What module or unit is best for being used when calling web services? fphttpclient is what you need. I want to try using Apache Tika running as a server for extracting the contents

[fpc-pascal] Using REST based Services

2018-10-06 Thread Marc Santhoff
Hi, being rather agnostic regarding web techniques I have to ask: What module or unit is best for being used when calling web services? I want to try using Apache Tika running as a server for extracting the contents of files. Files are transferred using HTTP PUT method- See there for a quick ov