is it possible to create a parcelable session and pass it from one activity to another. is it possible, then how should i do that ?
i am trying to develop a Facebook app using Facebook SDK in android.
|
is it possible to create a parcelable session and pass it from one activity to another. is it possible, then how should i do that ? i am trying to develop a Facebook app using Facebook SDK in android. |
|||||||
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
There is no need to pass the session data between Activities. You can directly access the Session data from any Activity by saving the access token and expiry time to persistent memory and then access them either from SharedPreferences in your Activity or via your own Session class. For a complete example of how to do login to Facebook and request data from different Activities have a look at the Hackbook example of github: Hackbook app source code on github and a walk-through on Facebook Developers. In the HackBook, there is a class called Edit: Here is a step-by-step tutorial on how to create a basic Android Facebook app with auth and login: When going through the Hackbook, start by reading the code to the class |
|||||||||
|