okta-sdk-appauth-android icon indicating copy to clipboard operation
okta-sdk-appauth-android copied to clipboard

okta-sdk-appauth-android

Results 28 okta-sdk-appauth-android issues
Sort by recently updated
recently updated
newest added

end_session_redirect_uri is now mandatory since 0.2.0? I am getting the crash when the app init the OktaAppAuth.

> public void logoutCurrentUser() { > if (null != mOktaAuth && mOktaAuth.isUserLoggedIn()) { > Log.e(TAG, "logoutCurrentUser: User logged out"); > mOktaAuth.logout(); > } > } **Steps to reproduce:** 1. Login...

Currently, this repo contains both the SDK and a demo app. This gets a little confusing because it's hard to tell how they are separated. We are publishing https://github.com/okta/samples-android soon,...

to do

com.okta.sdk and com.okta.authn.sdk which we are going to use during "native" login, use streams API from Java 8. This fact only allows using these libraries on Android API 24+ These...

We should probably make `JsonParser` package private to not expose this class?

In Progress

I have my Setup configured exactly as the readMe says and I am calling this: mOktaAuth!!.login( this, PendingIntent.getActivity(this, 0, completionIntent, 0), PendingIntent.getActivity(this, 0, cancelIntent, 0) ) I am instead getting...

to do

This library currently returns user info as a `JSONObject`. We should investigate whether a better interface would be more helpful.

Something red appears on my logcat when launching this: ``` val completionIntent = Intent(this@LoginActivity, MainActivity::class.java) val cancelIntent = Intent(this@LoginActivity, LoginActivity::class.java) cancelIntent.flags = Intent.FLAG_ACTIVITY_CLEAR_TOP mOktaAuth.login(this@LoginActivity, PendingIntent.getActivity(this@LoginActivity, OKTA_REQUEST_CODE, completionIntent, 0), PendingIntent.getActivity(this@LoginActivity, OKTA_REQUEST_CODE,...

In Progress