I'm trying to get user pages:
<?php
try {
$pages = $facebook->api('/me/accounts?fields=id,name');
if (isset($pages['data'])) {
$this->assign('pages', $pages['data']);
$this->pages = $pages['data'];
}
} catch (\FacebookApiException $e) {
$loginUrl = $facebook->getLoginUrl(
array(
'redirect_uri' => $this->container->getParameter('home_url'),
'scope' => 'email,manage_pages'
)
);
echo '<script type="text/javascript">top.location.href = "'.$loginUrl.'";</script>';
exit;
}
but I jump into endless redirect loop. After some research I found out that PHP SDK get's an error from API in getAccessTokenFromCode method. $access_token_response variable is:
{"error":{"message":"This authorization code has expired.","type":"OAuthException","code":100}}
PHP SDK takes code value from COOKIE. The problem is that fbsr_{app_id} is not flushed and it still contains the same code. And that's the reason for endless loop.
What can I do to overcome this problem. I was thinking about deleting fbsr_{app_id} cookie but it looks weird. Why does SDK not handle this for me?