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

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -