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>
The Facebook graph API lets you make calls that return JSON, which you can parse in Android with a JSONObject like this below code.
JSONObject me = new JSONObject(fb.request("me")); String id = me.getString("id");