github.com/nishanths/fullstory

Go client for the FullStory API


License
MIT
Install
go get github.com/nishanths/fullstory

Documentation

fullstory

wercker status GoDoc Coverage Status

Package fullstory implements a client for the fullstory.com API.

It's untested with the live API. Please create an issue if it does not work.

Docs

See godoc.

Test

go test -race 

Example

package main

import (
	"fmt"
	"log"

	"github.com/nishanths/fullstory"
)

func main() {
	client := fullstory.NewClient("API token")

	s, err := client.Sessions(15, "foo", "hikingfan@gmail.com")
	if err != nil {
		log.Fatal(err)
	}
	fmt.Println(s)
}

License

MIT.