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 use the Facebook C# SDK to build my membership system. When a user hits the site it does this:

FbApp = new FacebookApp();
if (FbApp.Session != null) {
    // boom, they're in - get they're profile

    if (profile != null) {
        // sweet, they're already a member - load data to viewdata
    }
    else {
        // the fb session is active, but they are not yet a member
        try {
            dynamic user = FbApp.Get("me");
                    // ... save to db
        }
        catch (Exception exc) {
            // handle error
        }
    }
}
else {
    // no session - they're not logged in
}

You can see it first checks for an active session. If there is one, pull their profile from the db. If they don't have one, query facebook with FbApp.Get("me") to get their data. Was working great.

Then I got a report of an error occurring when someone logs in for the first time. So on my dev box, I set the facebook app ID to my alternate (test) facebook app, delete my local profile from the local db, remove my facebook account's access to the site and then hit the test site.

It's supposed to just ask me for access, then pull my info from facebook and store it.

Instead I'm getting: (OAuthException) Error validating access token.

I've made sure I'm logged out of facebook, deleted all facebook/my domain cookies... but I can't get it to read my facebook profile.

Any ideas?

share|improve this question

1 Answer

up vote 0 down vote accepted

It was, in fact, a localhost cookie that was causing the issue. ;(

share|improve this answer

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.