Poshmark API client for the Go programming language
You can fetch this library by running the following
go get -u github.com/joshdk/posh
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())
This library is distributed under the MIT License, see LICENSE.txt for more information.