无法从eBay API检索嵌套信息

时间:2011-09-04 12:32:07

标签: c# xml linq ebay-api

我正在使用带有eBay API的Linq to XML,甚至无法从返回的XML中检索基本信息。我已经尝试了from x in y select z等的所有组合,但我没有运气。

我正在使用

加载数据
var xml = XDocument.Load ("http://svcs.ebay.com/services/search/FindingService/v1?OPERATION-NAME=findItemsByKeywords&SERVICE-VERSION=1.0.0&SECURITY-APPNAME=***MY-KEY-OBSCURED**&RESPONSE-DATA-FORMAT=XML&REST-PAYLOAD&keywords=yamaha&paginationInput.entriesPerPage=1&paginationInput.pageNumber=1");

我根据控制台和LINQPad获取了以下XML。

<findItemsByKeywordsResponse xmlns="http://www.ebay.com/marketplace/search/v1/services">   <ack>Success</ack>   <version>1.11.0</version>   <timestamp>2011-09-04T12:15:10.595Z</timestamp>   <searchResult count="1">
    <item>
      <itemId>220841819907</itemId>
      <title>YAMAHA RX-V592 SURROUND SOUND RECEIVER</title>
      <globalId>EBAY-US</globalId>
      <primaryCategory>
        <categoryId>14981</categoryId>
        <categoryName>Receivers</categoryName>
      </primaryCategory>
      <galleryURL>http://thumbs4.ebaystatic.com/pict/2208418199074040_1.jpg</galleryURL>
      <viewItemURL>http://www.ebay.com/itm/YAMAHA-RX-V592-SURROUND-SOUND-RECEIVER-/220841819907?pt=Receivers_Tuners</viewItemURL>
      <productId type="ReferenceID">46568009</productId>
      <paymentMethod>PayPal</paymentMethod>
      <autoPay>false</autoPay>
      <postalCode>76638</postalCode>
      <location>Crawford,TX,USA</location>
      <country>US</country>
      <shippingInfo>
        <shippingServiceCost currencyId="USD">22.0</shippingServiceCost>
        <shippingType>Flat</shippingType>
        <expeditedShipping>false</expeditedShipping>
        <oneDayShippingAvailable>false</oneDayShippingAvailable>
        <handlingTime>3</handlingTime>
        <shipToLocations>US</shipToLocations>
      </shippingInfo>
      <sellingStatus>
        <currentPrice currencyId="USD">51.0</currentPrice>
        <convertedCurrentPrice currencyId="USD">51.0</convertedCurrentPrice>
        <bidCount>13</bidCount>
        <sellingState>Active</sellingState>
        <timeLeft>P0DT0H18M17S</timeLeft>
      </sellingStatus>
      <listingInfo>
        <bestOfferEnabled>false</bestOfferEnabled>
        <buyItNowAvailable>false</buyItNowAvailable>
        <startTime>2011-08-28T12:33:27.000Z</startTime>
        <endTime>2011-09-04T12:33:27.000Z</endTime>
        <listingType>Auction</listingType>
        <gift>false</gift>
      </listingInfo>
      <returnsAccepted>false</returnsAccepted>
      <condition>
        <conditionId>3000</conditionId>
        <conditionDisplayName>Used</conditionDisplayName>
      </condition>
      <isMultiVariationListing>false</isMultiVariationListing>
    </item>   </searchResult>   <paginationOutput>
    <pageNumber>1</pageNumber>
    <entriesPerPage>1</entriesPerPage>
    <totalPages>819204</totalPages>
    <totalEntries>819204</totalEntries>   </paginationOutput>   <itemSearchURL>http://www.ebay.com/sch/i.html?_nkw=yamaha&amp;_ddo=1&amp;_ipg=1&amp;_pgn=1</itemSearchURL> </findItemsByKeywordsResponse>

任何人都可以帮我找到第一层信息,例如ack和版本,然后是嵌入searchResult-&gt; Item中的信息。

因此,上面我指的是元素的价值......

findItemsByKeywordsResponse->ack
findItemsByKeywordsResponse->version

以及嵌套信息

findItemsByKeywordsResponse->searchResult->item->itemId
findItemsByKeywordsResponse->searchResult->item->title

我花了几天时间搜索网站以寻找答案,但却找不到可行的解决方案。

3 个答案:

答案 0 :(得分:1)

您尚未显示您尝试过的任何代码,但我强烈怀疑您只是错过了命名空间。像这样的代码:

XNamespace ns = "http://www.ebay.com/marketplace/search/v1/services"

XElement ack = doc.Root.Element(ns + "ack");
XElement version = doc.Root.Element(ns + "version");
IEnumerable<string> itemIds = doc.Root.Elements(ns + "searchResult")
                                      .Element(ns + "item")
                                      .Element(ns + "itemId")
                                      .Select(x => (string) x);

答案 1 :(得分:1)

最可能的问题是名称空间。文档中的元素位于命名空间http://www.ebay.com/marketplace/search/v1/services中,您必须在查询中反映这一点。所以,有了这个:

XNamespace ns = "http://www.ebay.com/marketplace/search/v1/services";

通过以下方式检索ack的值:

 xml.Root.Element(ns + "ack").Value

答案 2 :(得分:0)

Ebay本身提供了一个类库,可以在ebay服务器上有一个包装器。通过它,您可以直接接收强类型对象,而不必自己解析返回的xml。

看看这里,可能有所帮助:

http://developer.ebay.com/products/finding/

在“工具”下,您可以找到包含.NET和Java的库和示例项目的下载。