Skip to content

griffin-stewie/go-chatwork

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

69 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ChatWork API Client for Golang

ChatWork client for Golang.

Install

$ go get github.com/griffin-stewie/go-chatwork

Usage

package main

import (
  chatwork "github.com/griffin-stewie/go-chatwork"
)

func main() {
  chatwork := chatwork.NewClient(`api-key`)

  chatwork.Me()

  chatwork.MyStatus()

  chatwork.MyTasks(map[string]string {
    "assigned_by_account_id": "123",
    "status": "open"
  })

  chatwork.RateLimit()

  ...
}

for GoogleAppEngine/Go

c := appengine.NewContext(r)
client := urlfetch.Client(c)
chatwork := chatwork.NewClient(`api-key`)
chatwork.HTTPClient = client

See more examples in examples directory.

About

ChatWork API Client for Golang Forked from https://github.com/yoppi/go-chatwork

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%