reddit icon indicating copy to clipboard operation
reddit copied to clipboard

reddit api for haskell

Results 6 reddit issues
Sort by recently updated
recently updated
newest added

This doesn't add any tests or any new APIs that can be accessed, but this should at least allow people to get started with using Reddit's OAuth endpoint. This is...

Add support for GHCJS using pull request to api-builder: https://github.com/intolerable/api-builder/pull/4 At least examples from README work correctly.

`getCommentsInfo` fails when passed a list over 100 elements long. I would think it should instead break up the list into as many 100-element requests as necessary.

Building with the resolver `nightly-2018-10-16` fails to build even when I specify reddit-0.2.3.0 in the stack.yaml. The solver fails because of these versions of dependencies: ``` - aeson-1.2.4.0 - api-builder-0.15.0.0...

Example from readme: ```haskell {-# LANGUAGE OverloadedStrings #-} import Reddit import Reddit.Types.Post import Control.Monad import Control.Monad.IO.Class import Data.Monoid import qualified Data.Text as Text import qualified Data.Text.IO as Text main =...

I'm trying to get some basic usage out of this library for a little bit and I'm getting a strange error when I try to use `getPosts`. This is the...