I'm running a website that contains some events. When an event is added to the website, the event should be posted to facebook.
This works perfectly, but I'm trying to update it because of the offline access that will become deprecated soon.
I get a new access token (since the old one was invalid due to password change) by following these steps. Now I have a "short lived" access token that expires after ± 2 hours.
According to what's said on this page, scenario 3: server side oAuth, I should get a long lived access token that expires after 60 days.
What am I doing Wrong? Also, when I try to exchange the short lived acces token for a long lived one (cfr. scenario 4 on the page from the same link), I get an error:
"error": {
"message": "An unexpected error has occurred. Please retry your request later.",
"type": "OAuthException",
"code": 2
}
Details about my flow:
https://www.facebook.com/dialog/oauth?client_id=[CLIENT_ID]&redirect_uri=[REDIRECT_URI]
&scope=publish_actions&state=[STATE]
Then I get redirected to the given redirect uri, with some parameters:
[REDIRECT_URI]?state=[STATE]&code=[CODE]
Then I get an access token with the code from the redirect above:
https://graph.facebook.com/oauth/access_token?client_id=[CLIENT_ID]
&redirect_uri=[REDIRECT_URI]&client_secret=[CLIENT_SECRET]&code=[CODE]
The response I get now is:
access_token=[ACCESS_TOKEN]&expires=6029
As you can see, the access token expires after two hours.