0

我只是对整件事感到很困惑。我的国内运输工作正常。我的国际运输不工作。

http://production.shippingapis.com/ShippingAPI.dll?API=InitRateV2&XML=
<IntlRateV2Request USERID="xxxxxxxxxxx">
  <Package ID="1ST">
    <Pounds>15</Pounds>
    <Ounces>0</Ounces>
    <Machinable>True</Machinable>
    <MailType>Package</MailType>
    <GXG>
         <POBoxFlag>Y</POBoxFlag>
          <GiftFlag>Y</GiftFlag>
    </GXG>
   <ValueOfContents>200</ValueOfContents>
    <Country>Canada</Country>
    <Container>RECTANGULAR</Container>
    <Size>LARGE</Size>
    <Width>10</Width>
    <Length>15</Length>
    <Height>10</Height>
    <Girth>0</Girth>
    <CommercialFlag>N</CommercialFlag>
  </Package>
</IntlRateV2Request>

这给出了一个错误。

用户 ID 已更新为生产模式..

<Error>
    <Number>80040b1a</Number>
    <Description>API Authorization failure. InitRateV2 is not a valid API name for this protocol.</Description>
    <Source>UspsCom::DoAuth</Source>
</Error>
4

1 回答 1

1

这只是一个猜测,但您的错误消息显示“InitRateV2 不是此协议的有效 API 名称”。

查看您发送的根标记的 XML 是<IntlRateV2Request USERID="xxxxxxxxxxx">.

这可能是您的代码中的拼写错误。你有没有尝试过:

`http://production.shippingapis.com/ShippingAPI.dll?API=IntlRateV2&XML=`?

换句话说,Intl,而不是Init

于 2013-09-13T08:08:15.057 回答