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.