I have an Android app in which I use the Facebook-Android-SDK. This application sends messages to a PHP script, which is located on my webspace. This script needs to check which Facebook account has sent the message and whether the message is really from my Android application.
To authenticate the Facebook account I can send the access_token with a HTTPS request to the PHP script, so it can get the Facebook userID from the openGraph.
But how can I be sure that the request does not come from another app? I can not simply encrypt the message again, because you could simply read the password from the source code of the app (in Java, this is not so difficult).