In my code to put e.description return null
The event description and other methods work without problems, for example e.nameBelow my code:
----------------------------------------
public String getDescripcionEvent(String token, String nombreEvento) {
String result = null;
FacebookClient facebookClient = new DefaultFacebookClient(token);
Connection<Event> myEvents = facebookClient.fetchConnection("me/events", Event.class);
for (Event e : myEvents.getData()) {
if(e.getName().equals(nombreEvento)){
result = e.getDescription();
}
}
return result;
}
---------------------------------------------------------------
thanks!!!!!