支持 Facebook 的 Codeigniter 身份驗證庫 (Codeigniter Authentication library with Facebook support)


問題描述

支持 Facebook 的 Codeigniter 身份驗證庫 (Codeigniter Authentication library with Facebook support)

I am building an application that will require users to login via Facebook OR their own email address. I have always in the past used the IonAuth2 library but I cannot quite see how to integrate this with Facebook using the documentation.

Can anyone provide any advice on this matter, would I be better of using another Codeigniter library or does anyone know of how to integrate Facebook into IonAuth2 easily.

I have already got the basics working with Facebook in terms of setting up an application and using the API to login via your Facebook as illustrated below ‑ I am just trying to think of the best way of doing this in relation to the authentication system (ideally ionAuth2 if possible)

    public function index()
    {
      $user = $this‑>facebook‑>getUser();

      if($user) {
        try {
            $user_info = $this‑>facebook‑>api('/me');
            echo '<pre>'.htmlspecialchars(print_r($user_info, true)).'</pre>';
            echo 'user found';
            // save this info..
            $this‑>load‑>model('fb_users_model');
            $this‑>fb_users_model‑>insert_user($user_info); // id, first_name, last_name, link, username, gender, email, timezone, locale, verified, updated_time

            echo 'we have logged in..got to some page..';
            echo "<a href=/logout>Logout</a>";
        } catch(FacebookApiException $e) {
            echo '<pre>'.htmlspecialchars(print_r($e, true)).'</pre>';
            $user = null;
        }
    } else {
        echo "<a href=\"{$this‑>facebook‑>getLoginUrl()}\">Login using Facebook</a>";
    }
}

參考解法

方法 1:

http://benedmunds.com/ion_auth/

Search the page for facebook, there looks to be a snippet which does what you requested...

EDIT:

There's also a git: https://github.com/dgeorgiev/facebook‑ion‑auth

(by Zabsfngryboi)

參考文件

  1. Codeigniter Authentication library with Facebook support (CC BY‑SA 3.0/4.0)

#authentication #codeigniter #PHP #facebook-php-sdk #ion-auth






相關問題

PHP Twitter OAuth - 我無法驗證我的帳戶 (PHP Twitter OAuth - I cannot authenticate my account)

如何設置 RIA 服務以使用現有的 ASP.Net 成員基礎 (How to setup RIA Services to use an existing ASP.Net membership base)

使用具有身份驗證的 URL 設置圖像-IOS SDK (Set Image With URL having authentication-IOS SDK)

支持 Facebook 的 Codeigniter 身份驗證庫 (Codeigniter Authentication library with Facebook support)

lighttpd:身份驗證後如何將端口(僅對本地主機可見)轉發到 WAN? (lighttpd: How to forward port (visible only to localhost) to WAN after authentication?)

Symfony 2.8 WebTestCase:無法創建登錄會話 (Symfony 2.8 WebTestCase: Cannot create logged-in session)

使用 facebook、twitter 等進行身份驗證。合而為一! (Authentication with facebook, twitter, etc.. all in one!)

默認情況下,ASP.NET 登錄控件是否使用 ReturnURL 進行重定向? (By default, does ASP.NET Login Control use the ReturnURL to redirect?)

發布/訂閱請求身份驗證作為服務(或通過服務密鑰)而不是 Auth0 臨時密鑰 (Pub/sub request authentication as a service (or by service key) instead of Auth0 temporary key)

通過 Nginx 進行 Haproxy 身份驗證 (Haproxy authentication through Nginx)

Django login() 身份驗證總是返回 None (Django login() authenticate always returns None)

laravel 微風 Multi Auth - 具有兩個不同註冊的 Admin Guard (laravel breeze Multi Auth - Admin Guard with two diffirent registration)







留言討論