使用c#从API检索数据

本文关键字:检索 数据 API 使用 | 更新日期: 2023-09-27 17:53:39

我想在c#中基于URL地址"http://sporing.bring.no/sporing.xml?q=TESTPACKAGE-AT-PICKUPPOINT"的类中检索这些数据。

不幸的是,您不能使用"XDocument xml = XDocument. load(");"来检索数据,因为url地址不是xml文件。

我需要c#中的哪些源代码来检索基于URL地址"http://sporing.bring.no/sporing.xml?q=TESTPACKAGE-AT-PICKUPPOINT"的xml数据?

谢谢!

使用c#从API检索数据

XDocument xml = XDocument.Parse(new WebClient().DownloadString("http://sporing.bring.no/sporing.xml?q=TESTPACKAGE-AT-PICKUPPOINT"));

这可能会解决你的问题。