EDIT: This problem was caused by the fact the database field where I was storing the token was only 100 chars long, apparently the token is longer than 100 chars and it was getting silently cut by MySQL. I'll leave the question so others can read the symptoms and one of the possible reasons.
I've searched and found quite a bunch of similar questions, but I don't find any useful solution to my problem (almost none of them have an accepted answer!)
The setup:
I want to have a PHP app and iPhone native app with the same AppID (they're parts of the same application). I login the users through the PHP sdk and send the auth token back to my iPhone application because sometimes the users need to post to their walls, etc straight from the iPhone app.
The problem: I successfully login the user from the php-sdk, I pass the auth token I get back from Facebook to my iPhone app through a JSON feed, then I pass the auth token to the iOS Facebook SDK and it says that I have a valid session, but ... when I make a call to the "me" graph path I always get this error:
> code =10000. The operation couldn’t be completed.
> type= OAuthException
> message = Error validating application.
Discussion:
If I authorize the user using the native iOS Facebook connect dialogue, then calling the graph API works just fine(but I don't need that)
Authorizing only through PHP also works.
I compared the tokens that I have in PHP and on the iPhone - they are the same.
The only problem is trying to use the auth token from the php-sdk with the iPhone sdk.
Edit: It looks like the auth token I get with the PHP sdk is also not valid to use with the Facebook API explorer. Does anyone know why is that?