I a using a custom CMS system that rewrites every URL on the application domain:
RewriteRule ^(.*)$ index.php [QSA,L]
I am trying to integrate facebook login using the PHP SDK. The generated url for the login button looks similar to this:
<a class="fb-connect-button" href="https://www.facebook.com/dialog/oauth?client_id={appid}&redirect_uri=http%3A%2F%2Fsubdomain.mysite.com%2F&state={state}" style="color:blue;">FB CONNECT</a>
The login url was generated using the widely spread Facebook class written by Naitik Shah:
// Create our Application instance (replace this with your appId and secret).
$facebook = new Facebook(array(
'appId' => {appid},
'secret' => {appsecret},
));
// Get User ID
$user = $facebook->getUser();
// We may or may not have this data based on whether the user is logged in.
//
// If we have a $user id here, it means we know the user is logged into
// Facebook, but we don't know if the access token is valid. An access
// token is invalid if the user logged out of Facebook.
if ($user) {
try {
// Proceed knowing you have a logged in user who's authenticated.
$user_profile = $facebook->api('/me');
} catch (FacebookApiException $e) {
error_log($e);
$user = null;
}
}
// Login or logout url will be needed depending on current user state.
if ($user) {
$logout_url = $facebook->getLogoutUrl();
} else {
$login_url = $facebook->getLoginUrl();
}
The problem is that when the login button is clicked and the user is redirected to the facebook authentication api, he gets an URL similar to this:
http://subdomain.mysite.com/?state=e105dbac295c67b7960910be77f2f84d&code=AQA5Q5m8pxVXbjLh9s5lo2Rd8RIvtcy94LeY-iVMQLUAMxu2Gr3bPRM1S3u9PJMhqdsusxtL1Ma2TFn9955BGv-YwZq71_3JwDA-19XcXj9ABT-4jX3gKfY24g96lGYSyr7p2w_8cEo8uu0xWiLI8KOsnJsBcLVUi2ZPXF84e9ZboNQilIplT98B-oM5T2y3YfBTcM16902Ga7VOUIDcarkR#_=_
This url could not be validated by the CMS system and does not show the facebook generated authentication window. Is it possible to use another base url or can I force the facebook API to return a custom GET request. Or maybe just ignore this kind of URL via the .htaccess file?