Paste this code in to browser URL
https://graph.facebook.com/oauth/access_token?
client_id=APP_ID&
client_secret=APP_SECRET&
grant_type=fb_exchange_token&
fb_exchange_token=EXISTING_ACCESS_TOKEN
I received extend access-token. But this token won't expire in 60days, It never expire. With never expire token, when I use it few hours late, it return error as below:
Facebook.FacebookOAuthException: (OAuthException - #1) An unknown error has occurred. at Facebook.FacebookClient.ProcessResponse(HttpHelper httpHelper, String responseString, Type resultType, Boolean containsEtag, IList`1 batchEtags) at Facebook.FacebookClient.Api(HttpMethod httpMethod, String path, Object parameters, Type resultType) at Facebook.FacebookClient.Post(String path, Object parameters) at AmplifierSender.AmplifierSender.Main(String[] args)
How do I get token only expire in 60 days?