我将在ESV Bible 上使用公共网络服务。在我的个人网站上。
我已经获得了 API 密钥。对于一般测试,“IP”可以是关键。它有一个asp代码。
<%
'Reference Search
key = "IP"
strSearch = "John 1"
passage = Server.URLEncode(strSearch)
options = "include-passage-references=true"
set objHTTP = Server.CreateObject("Microsoft.XMLHTTP")
objHTTP.open "GET", "www.esvapi.org/v2/rest/passageQuery?key=" & _
key & "&passage=" & passage & "&" & options, false
objHTTP.send
Response.Write(objHTTP.responseText)
%>
但是我使用asp.net mvc 4,我将在视图中按下一个按钮然后弹出一个新窗口或创建一个html网页来显示响应。
如何修改代码?