Get Date Of Birth And Town/city From Facebook Sdk Graphusercallback
I have facebook loggin set up within my app like below, the idea is to login and then do a GraphUserCallback so we can get the use information and then pass to my own register syst
Solution 1:
The user's birthday will be in the birthday
field, and the user's location will be in the location
field (as opposed to user_birthday
or user_location
). So
birthday = responseMap.get("birthday").toString();location = responseMap.get("location").get("name").toString();
should work.
Post a Comment for "Get Date Of Birth And Town/city From Facebook Sdk Graphusercallback"