-
public interface AccessToken.AccessTokenRefreshCallback
-
-
Method Summary
Modifier and Type Method Description abstract UnitOnTokenRefreshed(AccessToken accessToken)The method called on a successful refresh of an AccessToken. abstract UnitOnTokenRefreshFailed(FacebookException exception)The method called on a failed refresh of an AccessToken. -
-
Method Detail
-
OnTokenRefreshed
abstract Unit OnTokenRefreshed(AccessToken accessToken)
The method called on a successful refresh of an AccessToken.
- Parameters:
accessToken- the access token created from the native link intent.
-
OnTokenRefreshFailed
abstract Unit OnTokenRefreshFailed(FacebookException exception)
The method called on a failed refresh of an AccessToken.
- Parameters:
exception- throw from AccessToken creation.
-
-
-
-