externalTokenLogin

abstract fun externalTokenLogin(authenticationToken: String, callback: (Result<Unit>) -> Unit): Cancelable

Support function to login the user using server-to-server pre-shared authentication token.

This is used when the host app backend registers a token for that user on the Smart Workspaces backend.

Note: The purpose of this function is to support clients that can not use Coroutines or the Kotlin programming language!

Since

1.10.0

Return

Cancelable It is your responsibility to cancel this operation, when no longer needed, to avoid memory leaks.

Parameters

authenticationToken

an authentication token

callback

receiving the Result

abstract fun externalTokenLogin(authenticationToken: String, lifecycleOwner: LifecycleOwner, callback: (Result<Unit>) -> Unit): Cancelable

Support function to login the user using server-to-server pre-shared authentication token.

This is used when the host app backend registers a token for that user on the Smart Workspaces backend.

Note: The purpose of this function is to support clients that can not use Coroutines or the Kotlin programming language!

Since

1.10.0

Return

Cancelable In case you want to cancel before Lifecycle.State.DESTROYED.

Parameters

authenticationToken

an authentication token

lifecycleOwner

auto cancel the Cancelable when lifecycle state is Lifecycle.State.DESTROYED.

callback

receiving the Result