AccessTokenTracker
이 클래스의 최신 버전을 사용할 수 있습니다. 확인해보세요 최신 버전.

This class can be extended to receive notifications of access token changes. The AccessTokenTracker.stopTracking() method should be called in the onDestroy() method of the receiving Activity or Fragment.

확장:Object
패키지:facebook
생성자
AccessTokenTracker()

The constructor.

public AccessTokenTracker()
인스턴스 메서드
onCurrentAccessTokenChanged(AccessToken, AccessToken)

The method that will be called with the access token changes.

protected abstract void onCurrentAccessTokenChanged(AccessToken oldAccessToken, AccessToken currentAccessToken)
매개변수설명
oldAccessTokenThe access token before the change.
currentAccessTokenThe new access token.
startTracking()

Starts tracking the current access token

public void startTracking()
stopTracking()

Stops tracking the current access token.

public void stopTracking()
isTracking()

Gets whether the tracker is tracking the current access token.

public boolean isTracking()
Returns
True if the tracker is tracking the current access token, false if not