Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Haskell is an advanced functional programming language, featuring strong static typing, lazy evaluation, extensive parallelism and concurrency support, and unique abstraction capabilities.

learn more… | top users | synonyms | haskell jobs

1
vote
1answer
225 views

haskell facebook exceptions

After reading this I tried {-# LANGUAGE OverloadedStrings, NoMonomorphismRestriction #-} module Login ( fbUrl, fbEmail ) where -- package http://hackage.haskell.org/package/fb import ...
3
votes
1answer
262 views

haskell facebook example

I am stuck with haskell types. {-# LANGUAGE OverloadedStrings #-} module Main ( main ) where import qualified Facebook as FB import Network.HTTP.Conduit (withManager) import ...
0
votes
1answer
175 views

How to redirect within a monad in Yesod?

I'm currently using the fb package to write a Yesod app that takes data from Facebook. In my Handler, I've managed to get the first step of the authentication to work, but I need to redirect to the ...
0
votes
2answers
122 views

What happened to Web.Authenticate.Facebook?

In previous versions of the authenticate package, there was something for Facebook authentication. Why does it not exist in the newer versions? Does it have to do with the fact that the Facebook API ...
10
votes
1answer
779 views

What's the best way to write facebook apps in haskell?

I'm building a site in haskell and the yesod web framework as a side project, and what I'd like to do is create a facebook app that lets users search their wall and the wall of their friends and ...