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

We have a iOS mobile app, the registration to Facebook is done via the client, after the registration the client sends the user token to the server in order to persist.. The access token debug view (FB debug tool ) straight after registration.

  App ID:344511023701798 : Haze
  Metadata: {"sso":"ios"}
  User ID:787428698 : Assaf Bito
  Issued:1357148461 (23 hours ago)
  Expires:1362332461 (in about 2 months)
  Valid:True
  ....

Every few days the sever send request to extend the access tokens using the RestFB API, JavaDoc using the method obtainExtendedAccessToken.

When debugging the new extended access token I can see that the Metadata: {"sso":"ios"} is no longer exists, therefore the next time a user will need to interact with FB via our app he will have to authenticate which wasn't the case when the metadata information was exist.

What are we doing wrong? should the request for extension should be from the client also? the is no way to request for specific meta-data when extending via the server?

Answers will be appreciated...

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.