BSD-3-Clause licensed by Felipe Lessa, Sibi Prabakaran
This version can be pinned in stack with:fb-1.2.0@sha256:46ae3fce1aced3c946e0ff748d3e5d0dcdbe85315f9e78b43bc1b79cf9ee75b6,3376
Module documentation for 1.2.0
Depends on 26 packages
(full list with versions):
aeson, 
attoparsec, 
base, 
base16-bytestring, 
base64-bytestring, 
bytestring, 
cereal, 
conduit, 
conduit-extra, 
crypto-api, 
cryptohash, 
cryptohash-cryptoapi, 
data-default, 
http-client, 
http-conduit, 
http-types, 
monad-logger, 
old-locale, 
resourcet, 
text, 
time, 
transformers, 
transformers-base, 
unliftio, 
unliftio-core, 
unordered-containers fb

Haskell bindings to Facebook’s API
Example code to get User Access token
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE ScopedTypeVariables #-}
import Facebook
import Network.HTTP.Client
import Network.HTTP.Client.TLS
import Control.Monad.Trans.Control
import Control.Monad.Trans.Resource
import Control.Monad.IO.Class
import Data.Monoid ((<>))
import Data.ByteString.Char8 (pack)
import Data.Text hiding (pack)
import Data.Aeson
import qualified Data.Text.Encoding as TE
myCreds :: Credentials
myCreds =
  Credentials
  { appName = "Your_APP_Name"
  , appId = "your_app_id"
  , appSecret = "xxxxxxxxxxxxxxxxx"
  }
main :: IO ()
main = do
  mgr <- newManager tlsManagerSettings
  let redirectUrl = "https://www.yourdomain.com/"
  runResourceT $
    runFacebookT myCreds mgr $
    do url1 <- getUserAccessTokenStep1 redirectUrl ["public_profile", "email"]
       liftIO $ print ("Paste the url in browser and get code: " <> url1)
       code <- liftIO $ getLine
       token <- getUserAccessTokenStep2 redirectUrl [("code", pack code)]
       liftIO $ print token
Snippet to get your Profile Picture:
       (picture :: Value) <-
         getObject "/me/picture" [("redirect", "0")] (Just token)
       liftIO $ print picture
Snippet to get your firstname, lastname:
       user <- getUser "me" [("fields", "first_name,last_name")] (Just token)
       liftIO $ print user
Version 1.2.0
- Rewrote fb for conduit-1.3.0
- Fixed various warnings and did general cleanup
- Fixed fetchNextPage/fetchPreviousPage test by adding (“filter”, “stream”) for comments api.
- Made lower bound of http-conduit to 2.3.0
Version 1.1.1
- Make versioned call. By default now it uses `v2.8.
- disassociateTestuserfunction added.
- getPage_function added which accepts- AppAccessTokenas opposed
to- getPagefunction.
- Fixed a bug in getObjectBool
- Travis CI added