A web service I'm developing connects a user's account to their Facebook account through a API that passes a Facebook access token to the backend. Is there some way to ensure that the access token that has been received belongs to my application?
Obviously, there will be errors later on if I try to use an access token from a different application to publish actions, for instance, but I'd rather catch this error case before associating the incorrect access token with a user's account.