public interface OIDCLoginContinuation
| Modifier and Type | Method and Description |
|---|---|
void |
callback(java.net.URL redirectedURL,
java.lang.Throwable error)
Callback method that should be called when the login UI completes, so that Couchbase Lite's
replicator can continue or stop.
|
void callback(java.net.URL redirectedURL,
java.lang.Throwable error)
redirectedURL - The authentication URL to which the WebView was redirected.
It will have the same host and path as the redirectURL passed to your
login callback, plus extra query parameters appended.
If login did not complete successfully, pass null.error - If the login UI failed, pass the error here (and a nil authURL.)
As a special case, if both error and authURL are null, it's
interpreted as an authentication-canceled error.