Reputation: 2503
I have developed JAX-RX using liferay rest module and it is working fine with oauth. I am using that rest for mobile usage. I want use forgot password functionality in mobile and from that I want call rest service. How can I call rest service for forgot password without token?
Upvotes: 1
Views: 136
Reputation: 3688
You don't. the token is an essential security feature and it needs to exist. Work around to remove the token might get you in a bad situation where the legitimacy of the client is put in check, even during a session. XSS comes to mind.
Upvotes: 1