I have an Android
app where I am processing payments within the app. The payment also requires 3d-secure
verification sometimes. So this requires redirecting the user to a webpage where they will be able to make some appropriate actions: Such as entering a code or such. In my case, the app is targeted towards Swedish users and it redirects them to a page where they must open another "bank ID
" app, either on the same device or another, to perform this verification.
On our iOS
app this feature works as expected. Once the user has performed the verification, the browser receives a callback which can then be used to update the app accordingly, but on Android
, the WebView
I am using is not notified. So I am unable, so far, to handle the user-verification event.
Does anybody have experience with this or any similar use-case? Any help is appreciated.