05-31-2023 08:26 AM
Hi, I'm fairly new to the eBay API's and I'm currently looking at developing systems within GO to utilise them.
I've discovered the various SDKs in other languages and a couple tiny GO ones but is there demand out there for a more fully featured go module?
The main aims of it would be:
I would be very grateful for any responses revolving around interest in this!
06-09-2023 03:51 AM
Hiya, for anyone potentially interested in this project I've made some progress and got a bunch of common components plus Search functionality working well.
func main() {
Token := "######"
Endpoint := "https://api.sandbox.ebay.com/"
Client := GOBay.NewAplicationClient(Token, Endpoint)
Res, err := Client.Search(BrowseAPI_ItemSummary.RequestParams{Marketplace: BrowseAPI.EBAY_US, Query: "drone"})
if err != nil {
log.Print(err)
}
log.Print(Res.Items)
}
The above code is all that is required to get a list of Item objects from the API using the library.