Guest User

Untitled

a guest
Jan 21st, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. new GraphRequest(
  2. AccessToken.getCurrentAccessToken(),//TODO
  3. "/205129922839083/events",
  4. null,
  5. HttpMethod.GET,
  6. new GraphRequest.Callback() {
  7. public void onCompleted(GraphResponse response) {
  8. if(eventsList!=null)
  9. eventsList.clear();
  10. JSONObject object=response.getJSONObject();
  11. JSONArray array=response.getJSONArray();
  12. }
  13. }
  14. ).executeAsync();
Add Comment
Please, Sign In to add comment