repositorypackage
0.3.1
Repository: https://github.com/roharon/kakao-api-go.git
Documentation: pkg.go.dev
# README
Kakao REST API wrapper for Golang
This is a wrapper library for Kakao API written in Golang. Based on meinside/kakao-api-go
How to get
$ go get -u github.com/roharon/kakao-api-go
How to use
// sample
package main
import (
kakaoapi "github.com/roharon/kakao-api-go"
)
const (
apiKey = "0123456789abcdefghijklmnopqrstuvwxyz" // XXX - change this to yours
)
func main() {
client := kakaoapi.NewClient(apiKey)
//client.Verbose = true
// TODO - do something with `client`
// ...
}
See the samples here.
API coverages
- KakaoLogin
- KakaotalkSocial, last update: 2021.02.
- Message
- KakaoStory
- KakaoTalkChannel
- KakaoSync
- KakaoPay
- KakaoMoment
- PushNotification
- DaumSearch
- Map
- Local
- KakaoNavi
- Vision, last update: 2020.08.
- Pose, last update: 2020.06.
- Translation, last update: 2020.08.
- Speech, last update: 2020.06.
License
MIT