How to get birthday via Facebook API?
问题 I am setting up a Facebook login, and am successfully getting things like first_name , email , etc. However, I cannot seem to figure out how to get birthday. If I call for birthday as below, nothing returns. FB.api('/me', {fields: 'birthday'}, function(response) { console.log(JSON.stringify(response)); }) If I call user_birthday as below, I get this error: "error":{"message":"(#100) Tried accessing nonexisting field (user_birthday) FB.api('/me', {fields: 'user_birthday'}, function(response) {