Popularity
4.8
Growing
Activity
0.0
Stable
3
4
3

Monthly Downloads: 32
Programming language: Haskell
License: MIT License
Tags: Web    
Latest version: v0.1.3.4

chatwork alternatives and similar packages

Based on the "Web" category.
Alternatively, view chatwork alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of chatwork or a related project?

Add another 'Web' Package

README

chatwork

Hackage Build Status Stackage LTS Stackage Nightly

The ChatWork API for Haskell.

example

>> :module Network.HTTP.Req ChatWork
>> token = ChatWorkClient "xxx"
>> responseBody <$> runReq def (getMe token)
Right (Me {meToAccountId = 1234567, meToRoomId = 9876543, meToName = "\26494\21407\20449\24544", meToChatworkId = "", meToOrganizationId = 13579, meToOrganizationName = "", meToDepartment = "", meToTitle = "", meToUrl = "", meToIntroduction = "", meToMail = "", meToTelOrganization = "", meToTelExtension = "", meToTelMobile = "", meToSkype = "", meToFacebook = "", meToTwitter = "", meToAvatarImageUrl = "https://appdata.chatwork.com/avatar/1234/12345678.rsz.png"})
>> responseBody <$> runReq def (createRoom token $ CreateRoomParams Nothing Nothing [1234567] Nothing Nothing "test")
Right (RoomIdWrap {getRoomId = 78381630})
>> responseBody <$> runReq def (postMessage token 78381630 "hello")
Right (MessageIdWrap {getMessageId = "930765966558646272"})