lstak / node-sharepoint

Connecting Node and SharePoint
http://allthatjs.com/2012/03/29/node-js-meet-sharepoint/
104 stars 41 forks source link

Usage with Sharepoint Server 2010 #3

Closed akshayakrsh closed 12 years ago

akshayakrsh commented 12 years ago

Hi

I want to access list data from a sharepoint server. Is it available? I am not getting any data or error ins the callback method, what can I do?

Thanks

lstak commented 12 years ago

Code was designed for SP Online (claims based authentication). Please use a http tracer to analyse http request/response

akshayakrsh commented 12 years ago

Hi, I tried to do it...I am stuck at sending the access credentials. The way I am doing is to call the same ListData.svc file and trying to send a header parameter "Authorization" with value of format "NTLM base64(username:password)" but its not working...can you please guide?

lstak commented 12 years ago

That won't work. You need to implement NTLM in javascript (search on google for hints) or allow for another way to authenticate (e.g. Basic auth).

akshayakrsh commented 12 years ago

ok, you were right...BASIC auth works easily but NTLM is more complex. I'll try to implement it if possible.