Hi Guys
I'm creating a website using Spring MVC. let you know what I have done.
1: I created App, and got API Id, API version, and App Secret Code,
2: Now I configured all details in our code.
3: Login functionality is working fine and for fetching user data I'm using
https://graph.facebook.com/v2.5/me?" + accessToken;
Now the problem is below.
1: I'm getting only two details from graph , like {"name":"Angad Jha","id":"1004851352898414"}.but I need also other data like gender , email, date of birth etc.
2: please suggest me logout http url. and how to use logout url in
java and redirect to login page.
Note: I don't want use java script FB.logout in our code.