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

Get requests

Roman Kushnarenko edited this page Oct 29, 2014 · 2 revisions

Initialize callback listener:

OnAppRequestsListener onAppRequestsListener = new OnAppRequestsListener() {			
	@Override
	public void onComplete(List<AppRequest> appRequests) {
		Log.i(TAG, "Number of app requests = " + appRequests.size());
	}
	
	/* 
	 * You can override other methods here: 
	 * onThinking(), onFail(String reason), onException(Throwable throwable)
	 */		
};

Get request:

mSimpleFacebook.getAppRequests(onAppRequestsListener);
Clone this wiki locally