I had problems getting the birthday information from facebook into my app.
Biggest problem was misunderstanding the permissions page from FB:
http://developers.facebook.com/docs/authentication/permissions/
Here the birthday is described as user_birthday. But thats not how you can grab it from the response. I found a solution which is very easy.
Getting the birthday from facebok is easy if you have a method like
The key part here is to strptime from the right array, which is not user_birthday, but just birthday. Also ensure that you have set the user_birthday as permission in devise.rb -> Else you will only receive nil.