cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

GOlang SDK

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:

  • Simplify complex concepts such as auth for new developers
  • Increase speed to market for new concepts
  • examples of good implementation (as open source)

 

I would be very grateful for any responses revolving around interest in this!

Message 1 of 2
latest reply
1 REPLY 1

Re: GOlang SDK

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.

 

 

Message 2 of 2
latest reply