使用 php sdk 和 Yii 框架进行 Facebook 身份验证

发布于 2024-12-05 15:22:29 字数 888 浏览 0 评论 0原文

我正在使用 Yii 框架开发 facebook 应用程序,并希望使用 php sdk 进行身份验证和其他图形 api 调用。虽然我有一个经过测试的身份验证脚本可以完美运行,但我无法使用我的 Yii 框架生成的文件正确实现它。

现在我正在 组件 中创建一个 FacebookHelper 类,其中包含整个身份验证代码

    public function authenticator()

(在此函数启动之前包含 facebook.php ,并使用

'application.lib.*'

lib 导入) protected 下的目录是我的 php sdk 所在的位置)

,主控制器(即 SiteController)包含以下用于调用它的代码。

public function actionIndex()
{
$fbhelper = new FacebookHelper();
$value=$fbhelper->authenticator();
if($value==0){
      die("It works");
    }
    $this->render('index');
}

应用程序使用 调用登录 URL,

$facebook->getLoginUrl()

但 facebook 显示一条消息,表明发生了某些错误。

我做错了什么。

由于我是 MVC 模型和 Yii 框架的新手,我对应该如何去做有点迷失,所以如果您也能解释您的答案,我将非常感激(即,如果有一些关于 MVC 架构的概念)它)。谢谢你!

I am developing a facebook app using the Yii framework and want to use php sdk for authentication and other graph api calls. Though i have a tested script for authentication which works perfectly, i am not being able to implement it properly with my Yii framework generated files.

Right now i am making a FacebookHelper class in components with the whole authentication code in a

    public function authenticator()

(have included facebook.php just before this function starts as well as imported using

'application.lib.*'

where the lib directory under protected is where my php sdk situated)

and the main controller which is the SiteController contains the following code for calling it.

public function actionIndex()
{
$fbhelper = new FacebookHelper();
$value=$fbhelper->authenticator();
if($value==0){
      die("It works");
    }
    $this->render('index');
}

The application calls the login url using the

$facebook->getLoginUrl()

but facebook displays a msg that some error occured.

What am i doing wrong.

As i am new to the MVC model and Yii framework i am a little lost about how should i go about it, so it will be very much appreciated if you can also explain your answer(i.e. if there is some concept regarding the MVC architecture in it). Thankyou!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

天赋异禀 2024-12-12 15:22:29

我正在使用以下扩展使用 PHP-SDK 进行 facebook 登录,并且工作正常。

https ://github.com/facebook/facebook-php-sdk-v4

它特定于 yii 框架..

I'm using the following extension for facebook login using PHP-SDK and its working fine..

https://github.com/facebook/facebook-php-sdk-v4

Its specific with yii framework..

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文