Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

If the user logs out from the Facebook app, my app won't be affected. Then if he logs in with a different account through Facebook app, my app can't detect it.

How can I detect if a different user/account is using my app?

share|improve this question

1 Answer

You can get the facebook user's id (and more) using the graph api:

[[FBRequest requestForMe] startWithCompletionHandler:^(FBRequestConnection *connection,NSDictionary<FBGraphUser> *user, NSError *error) {
    if (!error) {
        NSLog(@"%@",user.id);
    }
}];

You can use that to detect which user is using your app.

share|improve this answer
[[FBRequest requestForMe] startWithCompletionHandler:^(FBRequestConnection *connection, NSDictionary<FBGraphUser> *user, NSError *error) {NSLog(@"%@", user.id)}] the logged user.id is still the id of the previous user, not the current user on Facebook App / Safari – user1486035 Nov 7 '12 at 3:25
I dont think you can find what a user is doing outside of your app unless you reauthorize each time you come back to your app. – Edwin Iskandar Nov 7 '12 at 4:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.