I have an Activity which already extends from my own custom Activtiy class.
How can I work with Facebook API like without extending FacebookActivtiy.
I call LoginActivity and get access_token, but what I have to do after that?
Please give link if you know?
I try to use old scheme i.e to create new instance of class Facebook with app_id, but SDK tells that Facebook class is depreceated.
First of all, you should get the latest version of the API (if you haven’t already), which is the v3.0 that you can find here.
A detailed description of how to implement the authentication logic without extending Facebook’s
LoginActivityis found here.Hope it helps!