如何在ASP.NET(VB)中进行API调用

时间:2014-03-31 05:00:04

标签: asp.net xml vb.net

我想进行API调用,其中响应是XML格式。

这是API说明:http://www.dictionaryapi.com/products/api-collegiate-dictionary.htm

我已注册,并且我在请求网址中使用了密钥。

有人能告诉我如何拨打电话并分析回复吗?

三江源。

1 个答案:

答案 0 :(得分:1)

有些事情:

var request = WebRequest.Create("http://www.dictionaryapi.com/api/v1/references/collegiate/xml/hypocrite?key=1234");
var response = request.GetResponse();    
var xdoc = XDocument.Load(response.GetResponseStream());

然后你可以抓住你需要的东西:

xdoc.Element("ElementName");