sfFacebookConnectPlugin:身份验证问题

时间:2010-06-26 19:14:09

标签: authentication symfony1 facebook symfony-1.4

我尝试按照symfony主页上的sfFacebookConnectPlugin运行tutorial

一切看起来配置得很好。但是当我尝试使用sfFacebookConnectAuth / signin登录时。 我收到表单错误“用户名和/或密码无效。”。

我甚至不知道从哪里开始调试。

第一步可能是在Facebook端找到正确的应用程序设置(例如授权后回调URL Connect-URL Canvas回调网址

我使用symfony 1.4.5 doctrine和sfGuardDoctrinePlugin(在带有子域的实时主机上。)

感谢您的帮助。

3 个答案:

答案 0 :(得分:1)

我找到了这个页面:http://burgiblog.com/2009/09/18/developing-facebook-applications-with-symfony/现在它可以了,我在阅读完教程后改变了三件事:

  • modules / sfFacebookConnectAuth / config / security.yml:使用“false”代替“off”
  • 我在apps / frontend / config / app.yml
  • 中添加了“callback_url”
  • 我使用了教程中的facebook动作

我需要找出问题究竟是什么。我需要增加插件的一些东西。例如。将用户数据保存到我的个人资料类等。(现在我保存了一个神秘的用户名而不是正确的FB用户名。)

答案 1 :(得分:0)

它在插件页面上说该插件仅支持/稳定到Symfony 1.2。关于1.4兼容性,可以直接通过电子邮件向插件作者发送电子邮件。

答案 2 :(得分:0)

我在使用sfFacebookConnectPlugin时遇到了一些问题。我尝试从http://burgiblog.com/2009/09/18/developing-facebook-applications-with-symfony/复制简单的例子。并调用索引页面,我被重定向到facebook身份验证页面,但登录后,我没有被重定向回来。我只保持登录facebook。我做错了什么?

感谢。

这是我的代码:

[/frontend/config/app.yml]

# default values
all:
  facebook:
    api_key: xxx
    api_secret: xxx
    api_id: xxx
    callback_url: 'http://localhost'
    redirect_after_connect: false
    redirect_after_connect_url: ''
    connect_signin_url: 'sfFacebookConnectAuth/signin'
    app_url: '/my-app'
    guard_adapter: ~
    js_framework: none # none, jQuery or prototype.

  # It is highly recommended to use a js framework if you want a correct experience in IE

  sf_guard_plugin:
    profile_class: sfGuardUserProfile
    profile_field_name: user_id
    profile_facebook_uid_name: facebook_uid # WARNING this column must be of type bigint ! 100000398093902 is a valid uid for example !
    profile_email_name: email
    profile_email_hash_name: email_hash

  facebook_connect:
    load_routing:     true
    user_permissions: []


[layout.php]

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
<?php use_helper('sfFacebookConnect') ?>
<?php include_http_metas() ?>
<?php include_metas() ?>
<?php include_title() ?>
<link rel="shortcut icon" href="/favicon.ico" />
</head>
<body>

<?php echo $sf_content ?>

<?php include_bottom_facebook_connect_script(); ?>

</body>
</html>



[actions.class.php]

<?php

/**
 * facebook actions.
 *
 * @package
 * @subpackage facebook
 * @author     Your name here
 * @version    SVN: $Id: actions.class.php 12479 2008-10-31 10:54:40Z fabien $
 */
class homeActions extends sfActions
{
    /**
     * Executes index action
     *
     * @param sfRequest $request A request object
     */

    public function executeIndex(sfWebRequest $request)
    {
        sfFacebook::requireLogin();
        //get the user object
        $user = $this->getUser();

        // facebook user id
        $this->fb_uid = $user->getCurrentFacebookUid();
        // get or create user based on fb_uid
        $fb_user = sfFacebook::getOrCreateUserByFacebookUid($this->fb_uid);
    }
}



[indexSuccess.php]

<?php if ($sf_user->isFacebookConnected()): ?>

<fb:serverfbml style="width: 740px;">
    <script type="text/fbml">
        <fb:fbml>
            <fb:request-form target="_top" action="[where to redirect after invite]" method="post" type="[name of your app]" content="[text the user will receive]&lt;fb:req-choice url=&quot;http://apps.facebook.com/[your app]/&quot; label=&quot;Accept!&quot;  " image="" invite="true">
                <fb:multi-friend-selector cols="4" actiontext="[some text above the invite form]" />
            </fb:request-form>
        </fb:fbml>
    </script>
</fb:serverfbml>

<?php else: ?>
<p>Ooops?</p>
<br />
<?php endif; ?>