Safe Haskell | None |
---|---|
Language | Haskell98 |
The Github Users API, as described at http://developer.github.com/v3/users/.
- userInfoFor :: String -> IO (Either Error DetailedOwner)
- userInfoFor' :: Maybe GithubAuth -> String -> IO (Either Error DetailedOwner)
- module Github.Data
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"
module Github.Data