Is there a way to get the SharePoint 2013 data from Lists into Linux ? I am looking forward to create Linux scripts which could pull data from SharePoint and work accordingly.
1 Answer
SharePoint exposes web API that is independent of client's OS. You can consume SOAP web services and REST APIs from Linux.
The idea is that you need HTTP POST requests with proper SOAP Envelope messages in the body for SOAP web services such as /_vti_bin/Lists.asmx and HTTP GET,PUT,POST,DELETE requests for the REST endpoints such as /_vti_bin/Client.svc and /_api.
I hope you'll manage to find a good how-to given this introductory information.
-
I've updated the anwser.Alexey Krasheninnikov– Alexey Krasheninnikov2014-10-15 11:56:24 +00:00Commented Oct 15, 2014 at 11:56
-
2In essence, Linux can run Node.js for example, and you can use any JavaScript sample or library that builds SOAP/REST queries - there are lots available.Alexey Krasheninnikov– Alexey Krasheninnikov2014-10-15 12:48:15 +00:00Commented Oct 15, 2014 at 12:48