How to get authentication provider from share point through web services?..
I am log in to share point from python application. I need to find the selected authentication provider from the share point site. how to get that?..
How to get authentication provider from share point through web services?..
I am log in to share point from python application. I need to find the selected authentication provider from the share point site. how to get that?..
Copyright © 2021 Jogjafile Inc.
You cannot retrieve provider instance and then do something like
Membership.ValidateUser(username, password)
.You need to create a reference to the Authentication Web service, perform login operation (C# example below - you have to do something similar in Python):
and use obtained cookie.
Read the Reading a SharePoint list with PHP post - it might give you some ideas regarding accessing SharePoint from a non-Microsoft environment.