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.
See godoc.
go test -race
package main
import (
"fmt"
"log"
"github.com/nishanths/fullstory"
)
func main() {
client := fullstory.NewClient("API token")
s, err := client.Sessions(15, "foo", "[email protected]")
if err != nil {
log.Fatal(err)
}
fmt.Println(s)
}
MIT.