hitesh
hitesh

Reputation: 31

How to call a rest service in wso2 api manager 1.9

I am having a login (of some another application) , now i want that same login for wso2 api store and authenticate the user,,

Is it possible to call it using rest service in wso2 api manager for user authentication.?? if yes then how .??

Upvotes: 2

Views: 327

Answers (1)

Milad Kianmehr
Milad Kianmehr

Reputation: 347

Yes you can. Add a new custom user store manager to WSO2 api manager. every user manger has a domain name and you can add one or more user store. In user store you can call rest api or every other method. You can use user store like this:

username : domain.com/username

password : password

We use this method to authenticate our user with oauth2. https://docs.wso2.com/display/IS500/Writing+a+Custom+User+Store+Manager

Upvotes: 0

Related Questions