TestSession
最新版本的 SDK 已不再提供此課程。
有此級別的更新版本。前往查看 最新版本。

Implements an subclass of Session that knows about test users for a particular application. This should never be used from a real application, but may be useful for writing unit tests, etc.

Facebook allows developers to create test accounts for testing their applications' Facebook integration (see https://developers.facebook.com/docs/test_users/). This class simplifies use of these accounts for writing unit tests. It is not designed for use in production application code.

The main use case for this class is using TestSession.createSessionWithPrivateUser(android.app.Activity, java.util.List) or TestSession.createSessionWithSharedUser(android.app.Activity, java.util.List) to create a session for a test user. Two modes are supported. In "shared" mode, an attempt is made to find an existing test user that has the required permissions. If no such user is available, a new one is created with the required permissions. In "private" mode, designed for scenarios which require a new user in a known clean state, a new test user will always be created, and it will be automatically deleted when the TestSession is closed. The session obeys the same lifecycle as a regular Session, meaning it must be opened after creation before it can be used to make calls to the Facebook API.

Prior to creating a TestSession, two static methods must be called to initialize the application ID and application Secret to be used for managing test users. These methods are TestSession.setTestApplicationId(String) and TestSession.setTestApplicationSecret(String).

Note that the shared test user functionality depends on a naming convention for the test users. It is important that any testing of functionality which will mutate the permissions for a test user NOT use a shared test user, or this scheme will break down. If a shared test user seems to be in an invalid state, it can be deleted manually via the Web interface at https://developers.facebook.com/apps/APP_ID/permissions?role=test+users.

伸延:Session
套件:facebook
類別方式
createSessionWithPrivateUser(Activity, List)

Constructs a TestSession which creates a test user on open, and destroys the user on close; This method should not be used in application code -- but is useful for creating unit tests that use the Facebook SDK.

public static TestSession createSessionWithPrivateUser(Activity activity, List permissions)
參數說明
activityThe Activity to use for opening the session
permissionsList of strings containing permissions to request; nil will result in a common set of permissions (email, publish_actions) being requested
Returns
A new TestSession that is in the CREATED state, ready to be opened
createSessionWithSharedUser(Activity, List)

Constructs a TestSession which uses a shared test user with the right permissions, creating one if necessary on open (but not deleting it on close, so it can be re-used in later tests).

This method should not be used in application code -- but is useful for creating unit tests that use the Facebook SDK.

public static TestSession createSessionWithSharedUser(Activity activity, List permissions)
參數說明
activityThe Activity to use for opening the session
permissionsList of strings containing permissions to request; nil will result in a common set of permissions (email, publish_actions) being requested
Returns
A new TestSession that is in the CREATED state, ready to be opened
createSessionWithSharedUser(Activity, List, String)

Constructs a TestSession which uses a shared test user with the right permissions, creating one if necessary on open (but not deleting it on close, so it can be re-used in later tests).

This method should not be used in application code -- but is useful for creating unit tests that use the Facebook SDK.

public static TestSession createSessionWithSharedUser(Activity activity, List permissions, String sessionUniqueUserTag)
參數說明
activityThe Activity to use for opening the session
permissionsList of strings containing permissions to request; nil will result in a common set of permissions (email, publish_actions) being requested
sessionUniqueUserTagA string which will be used to make this user unique among other users with the same permissions. Useful for tests which require two or more users to interact with each other, and which therefore must have sessions associated with different users.
Returns
A new TestSession that is in the CREATED state, ready to be opened
getTestApplicationId()

Gets the Facebook Application ID for the application under test.

public static synchronized String getTestApplicationId()
Returns
The application ID
setTestApplicationId(String)

Sets the Facebook Application ID for the application under test. This must be specified prior to creating a TestSession.

public static synchronized void setTestApplicationId(String applicationId)
參數說明
applicationIdThe application ID
getTestApplicationSecret()

Gets the Facebook Application Secret for the application under test.

public static synchronized String getTestApplicationSecret()
Returns
The application secret
setTestApplicationSecret(String)

Sets the Facebook Application Secret for the application under test. This must be specified prior to creating a TestSession.

public static synchronized void setTestApplicationSecret(String applicationSecret)
參數說明
applicationSecretThe application secret
執行個體方法
getTestUserId()

Gets the ID of the test user that this TestSession is authenticated as.

public final String getTestUserId()
Returns
The Facebook user ID of the test user
getTestUserName()

Gets the name of the test user that this TestSession is authenticated as.

public final String getTestUserName()
Returns
The name of the test user