Authorization Error : Error Code 9 : Response state param did not match request state

I am using Okta Authentication for Android App. When I am opening the App it is taking me to Okta Login Page then redirecting me to app. This cycle is repeating again & again. And when I checked the Log it was saying :

AuthorizationException: {“type”:0,“code”:9,“errorDescription”:“Response state param did not match request state”}

Please can anybody resolve this issue I am not even able to put the credentials.

Below is the full logcat:

W/System.err: AuthorizationException: {“type”:0,“code”:9,“errorDescription”:“Response state param did not match request state”}
W/System.err: at com.okta.oidc.util.AuthorizationException$AuthorizationRequestErrors.(AuthorizationException.java:303)
W/System.err: at com.okta.oidc.clients.AuthAPI.validateResult(AuthAPI.java:137)
W/System.err: at com.okta.oidc.clients.web.SyncWebAuthClientImpl.processSignInResult(SyncWebAuthClientImpl.java:290)
W/System.err: at com.okta.oidc.clients.web.SyncWebAuthClientImpl.signIn(SyncWebAuthClientImpl.java:228)
W/System.err: at com.okta.oidc.clients.web.WebAuthClientImpl.lambda$signIn$3$WebAuthClientImpl(WebAuthClientImpl.java:148)
W/System.err: at com.okta.oidc.clients.web.-$$Lambda$WebAuthClientImpl$kahhJuT9U83XTCISiIUdYE87NJA.run(Unknown Source:6)
W/System.err: at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:458)
W/System.err: at java.util.concurrent.FutureTask.run(FutureTask.java:266)
W/System.err: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
W/System.err: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
W/System.err: at java.lang.Thread.run(Thread.java:764)

@Piyu794 I’m experiencing the same issue. Any news on this?

This error might sometimes be caused by triggering (by accident?) multiple calls to WebAuthClient.signIn(activity, payload). I.e. once onCreate and another time in onResume.