We are using WebEx Android SDK 2.8.0.10
When trying to login into webex portal in webview of Android in our app, we get an issue like this
- Entering wrong email first time
- Now, instead of telling "Wrong email" the Email Text Box clears itself
- Then when user enters the correct email and clicks sign in,
- User gets this page "Missing attribute"
We don't know how to fix this issue? Please help us.
Code:
val oAuth2 = OAuthWebViewAuthenticator(
BuildConfig.CLIENT_ID,
BuildConfig.CLIENT_SEC,
BuildConfig.SCOPE,
BuildConfig.REDIRECT_URL
)
val webex = Webex(applicationContext as Application, oAuth2)
agent.webex = webex
oAuth2.authorize(binding.OAuthWebView) { result: Result<Void?> ->
if (result.isSuccessful) {
}
}