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.

I am trying to create a Login and SignUp page using Parse Mobile platform. The matter is I want to connect my App user to his facebook. I could make it works using Facebook Users.

The thing is when we click on the facebook button, if the facebook id is not linked to any user, it creates a new user in the system. That's what I don't want.

So I force to Create my own mechanism for facebook connection:

if(![_prefs boolForKey:@"facebook"]) {
        [_login.logInView.facebookButton removeTarget:nil action:NULL forControlEvents: UIControlEventTouchUpInside];

        if(!user)
            [_login.logInView.facebookButton addTarget:self action:@selector(firstTimeFBConnect) forControlEvents:UIControlEventTouchUpInside];
        else if(user.isNew)
            [_login.logInView.facebookButton addTarget:self action:@selector(fbConnNewUser) forControlEvents:UIControlEventTouchUpInside];
    }

As you see In this code I used UserDefault, everything is perfect until when I uninstall the app and install again, all UserDefault will be reseted, but the link between user and facebook in my Parse cloud not.

What I want to have is:

The first time when user install the App and click on the facebook button, I can check if this facebook id is connected to any registered user in the system.

If yes, return TRUE. If not return FALSE.

I could not find any useful code in Parse yet.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.