I am trying to get the users' birthday via
$.getJSON("https:graph.facebook.com/me?fields=birthday&access_token="+accessToken, function(data) {
});
But unfortunately I have no idea on how to get the birthday itself because it gives me back this huge Object were I don't know how to handle it:
Could anyone please help me. I was looking at similar questions but unfortunately making the $.getJSON synchronous as suggested here is deprecated. The questions here and here did not really help either. Thanks in advance :)