I tried to read all the answers before opening new post, so if it's duplicate - sorry.
I am trying to make a Mobile Web App for my existing FB app. I set-up all the requirements in my app settings and it is "working". By "working" I meen that I get responce when I make index.php file and put something to echo. The problem starts when I try to login to FB.
My current app is made in PHP and I do the login on the server side like this
$facebook = new Facebook(array(
'appId' => $fbID,
'secret' => $fbSecret,
'cookie' => true,
));
$fb_user = $facebook->getUser();
if($fb_user < 1)
{
$scope = 'publish_stream,status_update,photo_upload';
$login_url = $facebook->getLoginUrl(array(
'redirect_uri'=>$redirect_url,
'next'=>$redirect_url,
'scope'=>$scope)
);
echo "<script>top.location.href='".$login_url."';</script>";
exit;
}
so now I am trying to implement something similar so I can put code like -> if_mobil = do another type of login, but it's not working :-(
I tried to adapt the JS method, but it's not working
if ($detect->isMobile()) {
$login_url = "https://m.facebook.com/dialog/oauth?client_id=$fbID&response_type=code&redirect_uri=$redirect_url&scope=$scope";
echo "<script>top.location.href='".$login_url."';</script>";
exit;
Is there any working code out there? I was looking to the official FB docs, and all I could find was http://developers.facebook.com/docs/mobile/web/build/, but that also uses JS for loging in.
Any directions? Thanks in advance!