验证Fedex位置搜索请求

时间:2016-02-24 08:48:32

标签: web-services fedex

我们已在一个ruby on rails应用程序中集成了Fedex API。

我们需要最近的下车地点。我们希望通过DANGEROUS_GOODS_SERVICES过滤位置。

我们检查了fedex locationService pdf文件,发现了我们要求的以下xml请求格式。

请求

  <SearchLocationsRequest xmlns="http://fedex.com/ws/locs/v3">
  <UserCredential>
    <Key>XXXXXXXXXXXX</Key>
    <Password>XXXXXXXXXXXXXX</Password>
  </UserCredential>
  <WebAuthenticationDetail/>
  <ClientDetail>
    <AccountNumber>XXXXXXXXXX</AccountNumber>
    <MeterNumber>XXXXXXXXX</MeterNumber>
    <Region>us</Region>
  </ClientDetail>
  <Version>
    <ServiceId>locs</ServiceId>
    <Major>1</Major>
    <Intermediate>0</Intermediate>
    <Minor>0</Minor>
  </Version>
  <EffectiveDate>2016-04-13</EffectiveDate>
  <LocationsSearchCriterion>ADDRESS</LocationsSearchCriterion>
  <Address>
    <StreetLines>811 E 1950 N</StreetLines>
    <City>Spanish Fork</City>
    <StateOrProvinceCode/>
    <PostalCode>84660</PostalCode>
    <UrbanizationCode/>
    <CountryCode>US</CountryCode>
    <Residential>0</Residential>
  </Address>
  <PhoneNumber/>
  <GeographicCoordinates/>
  <MultipleMatchesAction>RETURN_ALL</MultipleMatchesAction>
  <SortDetail>
    <Criterion>DISTANCE</Criterion>
    <Order>LOWEST_TO_HIGHEST</Order>
  </SortDetail>
  <Constraints>
    <RadiusDistance>
      <Value>10.0</Value>
      <Units>KM</Units>
    </RadiusDistance>
  </Constraints>
</SearchLocationsRequest>

响应

{"SearchLocationsReply"=>{"HighestSeverity"=>"ERROR", "Notifications"=>{"Severity"=>"ERROR", "Source"=>"prof", "Code"=>"1000", "Message"=>"Authentication Failed"}, "Version"=>{"ServiceId"=>"locs", "Major"=>"1", "Intermediate"=>"0", "Minor"=>"0"}}}

我们收到的身份验证失败消息,而相同的凭据用于获取费率和标签。

1 个答案:

答案 0 :(得分:0)

我遇到了与你相同的问题,几个小时后我发现问题是从联邦快递电子邮件确认中复制的一些隐形字符。在文本编辑器中可以看到它们:

Be careful with the strange characters at the begin and at the end of the key/passwords

小心键/密码的开头和结尾处的奇怪字符。

剥离这些字符后,问题就解决了。