Reputation: 207
Just simple quick questions,
I'm using facebook js api to login to my site
FB.login(function(response){
if (response.authResponse) {
FB.api('/me', function(response) { response.birthday .... }
Then I want to store birthday in my mysql db, but fb birhday format is MM/DD/YYYY and as far as I know mysql date format is YYYY-MM-DD. There is any other way then changing fb format by bruteforce ?
Upvotes: 1
Views: 2279