I'm new in iOS development and I want to search eBay items with my app. I found the reference on the eBay development network, but I can't find out how to search eBay items by keywords.
For example, I enter mobile, and I want to get the list with eBay mobile items with their prices. I've already tried ASIHTTPRequest to get information from one webservice, but:
- I can't find proper webservice in [https://www.x.com/developers/ebay][1]
- May be you can give me an example, how to load proper ebay items.
Update: thanks to your help, I saw get request of eBay web service
http://open.api.ebay.com/shopping?
callname=FindProducts&
responseencoding=XML&
appid=YourAppIDHere&
siteid=0&
version=525&
QueryKeywords=harry%20potter&
AvailableItemsOnly=true&
MaxEntries=2
But I would like to use a POST request. And eBay gives XML body of that request:
<?xml version="1.0" encoding="utf-8"?>
<FindProductsRequest xmlns="urn:ebay:apis:eBLBaseComponents">
<QueryKeywords>Harry Potter</QueryKeywords>
<MaxEntries>2</MaxEntries>
<AvailableItemsOnly>true</AvailableItemsOnly>
</FindProductsRequest>
But to form post request I, of course, need request URL. What URL should I use? Is it open.api.ebay.com?