posh icon indicating copy to clipboard operation
posh copied to clipboard

Poshmark API client for the Go programming language

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:    "[email protected]",
	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.