Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multiple facebook accounts in single iPhone app

Is there a way I can allow user to login with multiple facebook accounts at the same time? Like what tweetie2 does for twitter accounts. So if I have two facebook accounts - [email protected] and [email protected]. I want the user to login with both of them on my iPhone app. Selecting tab for [email protected] will show statuses from a and selecting tab [email protected] would do the same for b.

Please let me know. Thanks AJ

like image 666
AJ. Avatar asked Oct 27 '09 11:10

AJ.


People also ask

Can you have 2 Facebook accounts on one iPhone?

It's against the Facebook Community Standards to maintain more than one personal account.

Can you log into multiple Facebook accounts on app?

The standard Facebook app and web-based version don't allow users to log into more than one account at once. While Facebook for mobile devices lets you switch between accounts, it's not the same as using two simultaneously.


2 Answers

Ya if you used keychain to store their credentials it'd be possible to have them enter their credentials for each account (you'd store them in keychain) and then do the logout/login as necessary. Not the best, but might be all you have open to you.

like image 180
paulthenerd Avatar answered Sep 24 '22 08:09

paulthenerd


With the way the FBConnect code works, probably not more than one user at a time.

However, if you had two users A and B, when user B's tab is clicked on, you could log out user A and then log in user B. Then, when user A's tab is clicked on, user B would be logged out and user A logged back in.

Sam

like image 29
deanWombourne Avatar answered Sep 22 '22 08:09

deanWombourne