-
public interface AccessToken.AccessTokenCreationCallbackA callback for creating an access token from a NativeLinkingIntent
-
-
Method Summary
Modifier and Type Method Description abstract UnitonSuccess(AccessToken token)The method called on a successful creation of an AccessToken. abstract UnitonError(FacebookException error)The method called on a failed creation of an AccessToken. -
-
Method Detail
-
onSuccess
abstract Unit onSuccess(AccessToken token)
The method called on a successful creation of an AccessToken.
- Parameters:
token- the access token created from the native link intent.
-
onError
abstract Unit onError(FacebookException error)
The method called on a failed creation of an AccessToken.
- Parameters:
error- throw from AccessToken creation.
-
-
-
-