2011-09-04 17 views
0

我正在使用Linq将XML与eBay API配合使用,并且无法从返回的XML中检索基本信息。我已经尝试过from x in y select z等所有组合,但没有运气。无法从eBay API检索嵌套信息

我加载与

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->项目内的信息。

因此,通过以上我指的是元素的值...

 
findItemsByKeywordsResponse->ack 
findItemsByKeywordsResponse->version 

,并嵌套信息

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

我花了几天拖网答案的网站,但没有发现任何工作方案。

回答

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); 
+0

非常感谢,非常感谢。 – GHarping

0

易趣本身提供了一个类库来包装周围的易趣到易趣服务器。通过它您可以直接接收强类型对象,而不必自己分析返回的xml。

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

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

下的“工具”,你可以找到下载包括图书馆和.NET和Java样本项目。

+0

谢谢,我开始在这里然而,这是更适合我一个学习曲线,并很希望学习LINQ的方法,但很感谢您的帮助。 – GHarping

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 
+0

非常感谢,这是问题所在。 – GHarping