Apache-2.0 licensed by Domen Kožar
This version can be pinned in stack with:mixpanel-client-0.1.1@sha256:80d4c717d76686ca770cfebaf45745219e9d33ac9da6aaa946033e71e49c4d23,2638
Module documentation for 0.1.1
Depends on 11 packages
(full list with versions):
aeson,
base,
base64-bytestring,
bytestring,
http-client,
http-client-tls,
servant,
servant-client,
string-conv,
text,
time MixPanel client for Haskell
Implements major features of MixPanel HTTP API:
- [x] track
- [x] alias
- [x] engage
- [ ] import
- [ ] export
Getting started
import Data.Aeson ( (.=) )
import Data.Time.Clock ( getCurrentTime )
import GHC.Exts ( fromList )
import MixPanel ( Operation(Set), engage, track, alias
, AuthToken(..), mkEnv
-- reexports
, newManager, tlsManagerSettings)
main :: IO ()
main = do
-- setup
manager <- newManager tlsManagerSettings
let env = mkEnv (AuthToken "foobar") manager
-- track a simple event
Right () <- track env "Played Video" mempty
-- track an event with extra properties
Right () <- track env "Played Video Unique per user"
$ fromList [ "distinct_id" .= ("generated-id" :: String)
, "customProperty" .= True ]
-- alias the user
Right () <- alias env "generated-id" "[email protected]"
-- profile engagement
now <- getCurrentTime
Right () <- engage env "[email protected]"
$ Set (fromList [ "$created" .= now])
putStrLn "All good!"
Design questions
a) Why does it use Object/Array
intemediate values from Data.Aeson
?
TODO
- batch requests
- expose extra url query paramerers
- engage special properties more type safe?
- filter out null values in requests to mixpanel
- api support for tracking revenue
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog
and this project adheres to Semantic Versioning.
[Unreleased]
[0.1.1] - 2018-11-28
Changes
- ditch hpack @domenkozar
- add Show instance for MixpanelError
[0.1.0.0] - 2018-08-25
- Intial release @domenkozar