I\'m developing an application in which I\'m using Facebook log in button from SDK. I\'m able to get access_token of the user but I want userID>
Facebook
access_token
userID>
After successful login, you need to call following code. You can get the logged-in user details with id in response.
Session session = Session.getActiveSession(); Request request = Request.newGraphPathRequest(session, "me", null); com.facebook.Response response = Request.executeAndWait(request)