0

SOAP API を使用して、eBay サンドボックスへの最初の呼び出しを取得しようとしています。

無効な AppId応答が何度も返されます。サンドボックス環境に適切な AppIp があることを 4 倍に確認しました。eBay のドキュメントはかなり役に立ちません。

呼び出しには SUDS と Python 2.7 を使用しています。

リクエスト

DEBUG:suds.client:sending to (https://api.sandbox.ebay.com/wsapi?callname=GetCategories&appid=MyAppId&siteid=2&version=785&routing=default)
message:
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:ns0="urn:ebay:apis:eBLBaseComponents" xmlns:ns1="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.o
rg/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
   <SOAP-ENV:Header>
      <ns0:RequesterCredentials ns1:mustUnderstand="0">
         <eBayAuthToken>MySandboxUserAuthToken</eBayAuthToken>
      </ns0:RequesterCredentials>
   </SOAP-ENV:Header>
   <ns1:Body>
      <ns0:GetCategoriesRequest>
         <ns0:DetailLevel xsi:type="ns0:GetCategoriesRequestType">
            <ns0:DetailLevel>ReturnAll</ns0:DetailLevel>
            <ns0:Version>785</ns0:Version>
            <ns0:ErrorHandling/>
            <ns0:WarningLevel>High</ns0:WarningLevel>
            <ns0:LevelLimit>1</ns0:LevelLimit>
         </ns0:DetailLevel>
      </ns0:GetCategoriesRequest>
   </ns1:Body>
</SOAP-ENV:Envelope>

応答

...
<FaultDetail>
   <ErrorCode>127</ErrorCode>
   <Severity>Error</Severity>
   <DetailedMessage>API application &quot;{0}&quot; invalid.</DetailedMessage>
</FaultDetail>
...
4

1 に答える 1

0

テストツールappIdでテストしてみてください。

于 2012-08-28T14:37:19.757 に答える