Name: yesod-auth-fb Version: 1.10.1 Synopsis: Authentication backend for Yesod using Facebook. Homepage: https://github.com/psibi/yesod-auth-fb License: BSD3 License-file: LICENSE Author: Felipe Lessa, Michael Snoyman Maintainer: Sibi Category: Web Build-type: Simple Cabal-version: >= 1.6 Extra-source-files: README.md, demo/clientside.hs, CHANGELOG.md Description: This package allows you to use Yesod's authentication framework with Facebook as your backend. That is, your site's users will log in to your site through Facebook. Your application need to be registered on Facebook. . This package works with both the server-side authentication flow () via the "Yesod.Auth.Facebook.ServerSide" module and the client-side authentication () via the "Yesod.Auth.Facebook.ClientSide" module. It's up to you to decide which one to use. The server-side code is older and as such has been through a lot more testing than the client-side code. Also, for now only the server-side code is able to work with other authentication plugins. The client-side code, however, allows you to use some features that are available only to the Facebook JS SDK (such as automatically logging your users in, see ). Source-repository head type: git location: git@github.com:psibi/yesod-auth-fb.git Library hs-source-dirs: src Build-depends: base >= 4.11 && < 5 , yesod-core >= 1.6.1 , yesod-auth >= 1.6.1 , shakespeare >= 2.0 , wai , http-conduit >= 1.9 , text >= 0.7 , transformers >= 0.1.3 , yesod-fb >= 0.6.1 , fb >= 2.1.1 , conduit >= 1.3.0 , bytestring >= 0.9 , aeson >= 0.6 , time >= 1.0 , unliftio , resourcet >= 1.2.0 Exposed-modules: Yesod.Auth.Facebook , Yesod.Auth.Facebook.ClientSide , Yesod.Auth.Facebook.ServerSide Extensions: GADTs QuasiQuotes OverloadedStrings GHC-options: -Wall