java - Event creation on facebook using playframework -


i want know return function of event creation through facebook api ?

if event creation successful returns event id how show in code event has been created ?

can me ?

you should check response status.

//do facebook api call response r = ws.url("graphapi").get().get();  if (r.getstatus() == 200 ) {   logger.info("api success"); } else {   logger.error("api error"); } 

Comments

Popular posts from this blog

matlab - How to equate a structure array to structure array -

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -