public List<String> marketplace_getCategories() throws FacebookException, IOException {
callMethod( FacebookMethod.MARKET_GET_CATEGORIES );
if ( this.rawResponse == null ) {
return null;
}
MarketplaceGetCategoriesResponse resp = (MarketplaceGetCategoriesResponse) getResponsePOJO();
return resp.getMarketplaceCategory();
}