i have to extend the offline access token of all users stored in my database

here i found the method https://developers.facebook.com/docs/offline-access-deprecation/

but when i used this call

https://graph.facebook.com/oauth/access_token?             
    client_id=APP_ID&
    client_secret=APP_SECRET&
    grant_type=fb_exchange_token&
    fb_exchange_token=EXISTING_ACCESS_TOKEN 

for some users i get the new token

access_token=xxxxxxx&expires=5102358

for others i don't receive anything why?

i use this code

$request_url = "https://graph.facebook.com/oauth/access_token?client_id=xxxx&client_secret=xxxx&grant_type=fb_exchange_token&fb_exchange_token=xxxx";

$info = file_get_contents($request_url);

thanks in advance for your help.

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

The access token for the other users might have already expired by the time you're trying to convert it. You can ONLY extend non-expired access tokens. Once they expire, you will need to have you user come back to the app to reauth.

link|improve this answer
I was under the impression that facebooks implementation of the OAuth did not include the refresh token part. Was that changed? Is there any official documentation for that? I can't find any – Nitzan Tomer Feb 16 at 22:32
1  
developers.facebook.com/docs/offline-access-deprecation See the Client-side OAuth and Extending Access_Token Expiration Time through New Endpoint section. – DMCS Feb 16 at 22:33
1  
Splendid, thank you. – Nitzan Tomer Feb 16 at 22:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.