/posh

Poshmark API client for the Go programming language

Primary LanguageShellMIT LicenseMIT

GoDoc Go Report Card CircleCI

Posh

Poshmark API client for the Go programming language

Installing

You can fetch this library by running the following

go get -u github.com/joshdk/posh

Example

You can construct a simple client with the following

creds := posh.Credentials{
	Email:    "me@example.com",
	Password: "Pa$sw0rd",
}

config := posh.Config{
	Credentials: &creds,
}

client, err := posh.NewClient(config)
if err != nil {
	panic(err.Error())
}

fmt.Println(client.Session())

License

This library is distributed under the MIT License, see LICENSE.txt for more information.