Package 

Interface AccessToken.AccessTokenCreationCallback

    • Method Summary

      Modifier and Type Method Description
      abstract Unit onSuccess(AccessToken token) The method called on a successful creation of an AccessToken.
      abstract Unit onError(FacebookException error) The method called on a failed creation of an AccessToken.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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.