I have just started with the ebay Finding API and Feedback API and I need to deploy a basic API implementation on GAE/J.
The problems are:
-
How do we start with the local dev environment of the ebay SDK?
-
There is no Java tutorial for the Finding API and feedback.
-
GAE/J + ebay APIs won’t cause any complexity right?
I am looking for head start in the right direction,I am using Eclipse + GAE plugin.
2
Answers
STEP BY STEP GUIDE: http://developer.ebay.com/DevZone/XML/docs/HowTo/FirstCall/MakingCallJava.html
Got it, the simplest implementation can be HTTP GET/POST: (using name-value (NV) pairs)
Source
Now, if you specify the SECURITY-APPNAME as you appid, it will returns the list of items in XML. Now I just need to format that XML to HTML.
SAMPLE: thelostlogbook.appspot.com
Built using: JSP, http request (POST)
A full example never hurt anyone so I am going to post a sample of code I am using to fetch information using ebay REST API
And here is the URLReader class
Happy coding!