I have an iOS app that users can create an account in. I offer them the standard "Save time by connecting with Facebook" button so they can reuse their Facebook credentials. So far, so good.
Now, I want to offer a cloud SDK that provides certain of my app's user-created data to other apps, but I need to authenticate those users to make sure that whatever app is accessing my cloud SDK has actually logged that user into Facebook.
The best way I've come up with so far is to have the apps send the user's Facebook ID and access_token up to my cloud API server, and my server accesses https://graph.facebook.com/me?access_token=...... to validate that they have a good access token (and that it's linked to the Facebook ID that the app says it is).
Is there a better way to do this?