github-0.5.0: Access to the Github API, v3.

Safe HaskellNone

Github.Users

Description

The Github Users API, as described at http://developer.github.com/v3/users/.

Synopsis

Documentation

userInfoFor :: String -> IO (Either Error DetailedOwner)Source

The information for a single user, by login name.

 userInfoFor "mike-burns"

userInfoFor' :: Maybe GithubAuth -> String -> IO (Either Error DetailedOwner)Source

The information for a single user, by login name. | With authentification

 userInfoFor' (Just ("github-username", "github-password")) "mike-burns"