Skip to content
This repository has been archived by the owner on Aug 3, 2019. It is now read-only.

Get accounts

Roman Kushnarenko edited this page Oct 16, 2014 · 1 revision

Get pages of which the current user is an admin.

Initialize callback listener:

OnAccountsListener onAccountsListener = new OnAccountsListener() {			
	@Override
	public void onComplete(List<Account> accounts) {
		Log.i(TAG, "Number of accounts = " + accounts.size());
	}

	/* 
	 * You can override other methods here: 
	 * onThinking(), onFail(String reason), onException(Throwable throwable)
	 */			
};

Get my accounts:

mSimpleFacebook.getAccounts(onAccountsListener);
Clone this wiki locally