Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Please provide more details of your flow and some log/code of the calls you are making. Remember to censor any tokens/secrets. – Jan Gerlinger Jul 19 '12 at 16:44
I added some details in my question. – Lowie Jul 19 '12 at 17:12
Did you set the migration setting as shown here - Getting started with the new migration setting? – Jan Gerlinger Jul 19 '12 at 17:39
Yes, I enabled the "Remove offline permission"-setting. – Lowie Jul 20 '12 at 7:11
1  
I disabled the "remove offline_access permission"-setting and got a token with offline_access permission. I requested an access token with offline_access. Then I thought, let's try it one more time. I enabled the setting again and requested an access token, in the exact same way as I described in the flow, and I got an access token that expires in 2 months. So somehow by disabling-enabling the setting I got it working... Weird shizzle. – Lowie Jul 20 '12 at 9:36
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.