Facebook login - Help?

Hi,

I’m trying to implement facebook login into my app. I have followed the tutorials to implement for Android but when I call this:

        std::vector<std::string> permissions;
        permissions.push_back(sdkbox::FB_PERM_READ_EMAIL);
        sdkbox::PluginFacebook::login(permissions);

The tablet looks like it’s about to show a username/password dialog for facebook but it only shows
“You are not logged in. You are not logged in. Please login and try again” in a facebook type dialog box.

Does this mean I need to have the facebook app on my tablet and be logged in for this to work?

Thanks,
Katie

I figured this out after a few hours. I needed to include the “Android Platform” in the Facebook developers console. More specifically for Android I needed to specify my app package name, the main activity name and run “keytool” to provide a hash. Now it works. It was not necessary to have the Facebook app on my tablet. I hope this helps someone.