Hello everybody.
I have a question about error thrown from getStore call from Trading API (http://developer.ebay.com/Devzone/XML/docs/Reference/eBay/GetStore.html).
I am trying to make a call to that method.
Request:
<?xml version="1.0" encoding="utf-8"?>
<GetStoreRequest xmlns="urn:ebay:apis:eBLBaseComponents">
<RequesterCredentials>
<eBayAuthToken>my user auth token</eBayAuthToken>
</RequesterCredentials>
<UserID>lets say it will be "Musicians-Friend"</UserID>
</GetStoreRequest>
I need to get categories of that store. To be able to filter items by selected store category. And then show that items on my site. But all time I trying to call that method I getting an error.
RESPONCE:
<?xml version="1.0" encoding="UTF-8"?>
<GetStoreResponse xmlns="urn:ebay:apis:eBLBaseComponents">
<Timestamp>2013-09-03T09:11:06.126Z</Timestamp>
<Ack>Failure</Ack>
<Errors>
<ShortMessage>User must have a store subscription.</ShortMessage>
<LongMessage>User must have a store subscription.</LongMessage>
<ErrorCode>13003</ErrorCode>
<SeverityCode>Error</SeverityCode>
.............
</Errors>
<Version>837</Version>
<Build>E837_UNI_API5_16321230_R1</Build>
</GetStoreResponse>
I tried to find explanation on developer.ebay.com and by searching via google, but did not found anything usefull.
Can someone explain what I doing wrong? Or what i missed? And where i should to look for explanation of this problem?