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

I am testing my app on iOS6 and have my FB authentication in the iOS6 Facebook Phone Settings.

The FB access token I retrieve has the following info (from FB Access Token Debugger)

Metadata {"issue_time":1360165236,"issued_by_sso_proxy":xxxx,"machine_fbid":xxxx}
User ID  100004836993128 : Name xxxx
Issued  1360163106 (19 hours ago)
Expires 1365347106 (in about 2 months)
Valid   True
Origin  Mobile Web Faceweb

I'm trying to extend this FB token using

https://api.facebook.com/method/auth.extendSSOAccessToken?access_token=12345xxx

However I get

<error_code>10</error_code>
[trace] <error_msg>The access token was not obtained using single sign-on</error_msg>

Guess my questions are

1) Does this error make sense? Or am I doing something wrong?

2) Is there a proper way of handling those FB Access token?

I don't want the user to have to relogin after 2 months in my app, especially when they have their FB authentication in their phone already.

Thanks!

share|improve this question

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.