/loklak_api_go

Go library client for using the Loklak API

Primary LanguageGo

Loklak API Go

Build Status

This implements the API SDK for loklak server using golang. This is a Go client library for accessing the loklak API directly.

This is still a work in progress and hasn't been packaged into the loklak module yet. You can get this by doing

go get github.com/loklak/loklak_api_go

Installing

Fetch the required dependencies

  • go get github.com/hokaccha/go-prettyjson

Built in libraries that are being used are

  • net/http
  • net/url
  • fmt
  • os
  • encoding/json

Documentation

The loklak api for go can be used in the following manner

import "github.com/loklak/loklak_api_go"

func main() {
	loklakObject := new(Loklak)
	loklakObject.Connect("http://loklak.org/")
	// Note that the Connect step is necessary, you have to mention the loklak server you'd like to connect to.
	helloResponse := loklakObject.hello()
	fmt.Println(helloResponse)
}