I'm using Facebook's iOS SDK 3.7 on my iOS app to handle logins. When I request post permissions it looks like the expiration date is about 2 months from the date of login.
I understand I can check the expiration date using [FBSession activeSession].accessTokenData.expirationDate
but what happens, and how do I handle the token when the token expires?
Do I run [FBSession openActiveSessionWithReadPermissions:allowLoginUI:completionHandler:];
again?