0

我有以下代码,部分工作

<?php

   require_once 'facebook.php';

   $app_id = 'MY_APP_ID';
   $app_secret = 'MY_APP_SECRET';
   $app_url = 'http://mysite.com/index.php/';
   $scope = 'user_about_me';

   // Init the Facebook SDK
   $facebook = new Facebook(array(
     'appId'  => $app_id,
     'secret' => $app_secret,     
     'cookie' => true
   ));

   // Get the current user
   $user = $facebook->getUser();

   // If the user has not installed the app, redirect them to the Auth Dialog
   if (!$user) {
     $loginUrl = $facebook->getLoginUrl(array(
       'scope' => $scope,
       'redirect_uri' => $app_url,
     ));

     print('<script> top.location.href=\'' . $loginUrl . '\'</script>');
   } 

    $user_profile = $facebook->api('/me');
    echo "id: " . $user_profile['id'];   

 ?>

我在此页面上打印出正确的 ID,但在其他几个页面上,我进入了 if(!$user)。

但是oauth url中有一个错误:

API错误代码:191 API错误描述:指定的URL不属于应用程序错误消息:无效的redirect_uri:应用程序配置不允许给定的URL。

我在stackoverflow上发现了类似的问题,但似乎无法解决:/

在我的设置下,我有相同的 url 和 $app_url

带有 facebook 的网站 -> 网站网址 -> https://www.facebook.com/pages/myappname/373671679372127/

编辑:我编辑了我的 app_url,所以它现在与我在应用设置下的画布 url 相同:http: //mysite.com/index.php/

现在我没有收到错误。我只是得到一个空白窗口:(

编辑:在测试时偶尔清除 cookie 很重要。其他一些非常随机的错误

4

1 回答 1

1

检查您是否在开发设置中为“使用 Facebook 登录的网站”设置了正确的 URL。这不能是 facebook.com 上的页面,它必须是指向您的域的链接。

此外,我会将代码的最后 2 行包含在“else”块中。JavaScript 代码是错误的。这是正确的:

print('<script> top.location.href="' . $loginUrl . '";</script>');

(用双引号更容易理解,你错过了一个分号。即使它并不总是需要,你最好使用它)

试试这个代码:

$user = $facebook->getUser();

   // If the user has not installed the app, redirect them to the Auth Dialog
   if (!$user) {
     $loginUrl = $facebook->getLoginUrl(array(
       'scope' => $scope,
       'redirect_uri' => $app_url,
     ));
     print('<script> top.location.href=\'' . $loginUrl . '\';</script>');
   }
   else {
    echo 'User ID: ' . $user;
   }

另外,去掉“index.php”之后的斜线。那不是我的文件夹(我希望/猜测)。

于 2012-11-15T10:27:56.597 回答