EBay Finding API FindItemsByKeywords Returns 'Input URL Gave A Value For Header X-EBAY-SOA-OPERATION-NAME But Has A Conflicting Mapped Value' Error
I'm trying to make a call in to eBay's Finding API via GET in the URL bar, and i get these errors(XML):
Solution 1:
It might simply be that you have some spaces accidentally in the URL. Small problems like that can generate dizzying API errors.
Also use a &SERVICE-VERSION of 1.12.0 or thereabouts. 1.0.0 is a bit old.
Solution 2:
You need to include the SERVICE-NAME in your request as well:
http://svcs.ebay.com/services/search/FindingService/v1?
OPERATION-NAME=findItemsByKeywords&
SERVICE-NAME=FindingService&
SERVICE-VERSION=1.0.0&
SECURITY-APPNAME=YourAppId4&
RESPONSE-DATA-FORMAT=XML&
REST-PAYLOAD&keywords=harry%20potter%20phoenix
Post a Comment for "EBay Finding API FindItemsByKeywords Returns 'Input URL Gave A Value For Header X-EBAY-SOA-OPERATION-NAME But Has A Conflicting Mapped Value' Error"