We have a website and an Android application, both of which are supposed to allow Login With Facebook.
The website flow works as follows - On clicking on Login With Facebook, and giving the permission on the site to access personal details, it seems that Facebook sets some cookies. Then from the backend, we are checking if the person is indeed logged into Facebook by accessing these cookies, and if it is true, then we are sending back an authentication cookie (our own). This flow was not written by me and was told to me.
Now, my objective is to get that authentication cookie for the Android App. I have been able to implement the Connect with Facebook, and am able to login the user to FB and allow permissions. Now the difference is that there is no cookie set by FB which can be checked by the backend service to ensure that this person was really logged in. How do I proceed? As in, how do I convince the backend service that this is a genuine request originating from the app and not someone else trying to trick it?