Reputation: 324
I am new to WSO2 Identity server. i have a use case, if i login with locally developed .net web application with username and password(provided by wso2is), wso2is should be able to authenticate these credential and if these credentials are valid then it will be able to navigate to dummy website or url for testing purpose.
Can you please let me know how to achieve this using wso2IS.
Thank you Munna
Upvotes: 0
Views: 267
Reputation: 2744
There are multiple ways to authenticate a user from Identity Server. Easiest way is that you can call the admin service (SOAP service) for authentication (RemoteUserStoreManagerService/authenticate) [1].
Or you can create a OAuth application inside the IS and use resource owner grant type to pass the credentials and authenticate [2].
Upvotes: 1