Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I followed Facebook tutorial about how to use the extendAccessTokenIfNeeded -

    - (void)applicationDidBecomeActive:(UIApplication *)application
{
    [facebook extendAccessTokenIfNeeded];
}

This function is calling the following:

- (void)extendAccessTokenIfNeeded {
    if ([self shouldExtendAccessToken]) {
        [self extendAccessToken];
    }
}

Now I noticed that everytime I launch my app (at least on the simulator) Facebook decides that it "shouldExtendAccessToken". So every launch I get a new token.

I wonder - isn't it strange? shouldn't it happen once in every x days?

share|improve this question
You can set a bool value in NSUserDefault that you have accesstoken or not ...if yes then no need to get it again otherwise call the funtion for getting it. – The Tiger Aug 1 '12 at 10:21
thanks @VakulSaini. I thought that the Facebook SDK is doing it itself, isn't it? – Hamutsi Aug 1 '12 at 12:57
1  
I had used FBGraph ..... in this it was generating access token every time ..... its up to you to change it. If you are using any other API like sharekit then i cant say. – The Tiger Aug 1 '12 at 13:05

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.