The current flow of our iOS application and server was to authentication within the app and send the token to the server for offline processing.
I ran into this error message when testing:
{
"error": {
"type": "OAuthException",
"message": "Invalid access token signature."
}
}
(I am using the github iOS SDK btw)
I am not sure if it is token difference between a user token and an app token? I am not sure why the token I get from the iOS Facebook SDK can't be used by the Php Facebook SDK:
Once they have authenticated within the iOS app can I use the PHP SDK to avoid re-authenticating the user server-side? I need offline access.
Thank you