I need to create a web service for my site, this web service will allow all registered users to access all their data stored in the system.
I have different data types such as documents (txt format), excel sheets (csv), etc.
Now I read a lot of articles on how to create a web service, and I found the following options:
- Wsdl
- REST
- SOAP
- HTTP based API
I saw that SOAP and WSDL are complex, but it used a lot, REST and HTTP are very simple, but fewer people use it.
Should my web service be simpler for the user? or developer? or should i design both?
source share