How to validate JWT access token from mobile app?

I’m using MS Adal plugins for a Ionic3 project and its validate user from azure. Now, If I follow the below steps,

  1. Logged in the app after the sso validation and close the app.
  2. I change the password from a web browser.
  3. Now, I again open the app.

then, the app is opening without validating the JWT access token.

For a browser, the browser itself do all the validation for SSO authentication. We don’t need to remember the accessToken in the application. But a mobile app is standalone application.

So, is there a way to validate and renew the JWT access token for mobile app? OR could I validate and renew the JWT access token via dot net api?