我正在考试,我需要利用网络方法。请查看下面的链接
https://www.w3schools.com/xml/tempconvert.asmx?op=CelsiusToFahrenheit
我不知道我是否做对了。
我不知道打给谁。所以我检查了页面
我发现了这个
<form target="_blank" action="http://www.w3schools.com/xml/tempconvert.asmx/CelsiusToFahrenheit" method="POST">
<table cellspacing="0" cellpadding="4" frame="box" bordercolor="#dcdcdc" rules="none" style="border-collapse: collapse;">
<tbody><tr>
<td class="frmHeader" background="#dcdcdc" style="border-right: 2px solid white;">Parameter</td>
<td class="frmHeader" background="#dcdcdc">Value</td>
</tr>
<tr>
<td class="frmText" style="color: #000000; font-weight: normal;">Celsius:</td>
<td><input class="frmInput" type="text" size="50" name="Celsius"></td>
</tr>
<tr>
<td></td>
<td align="right"> <input type="submit" value="Invoke" class="button"></td>
</tr>
</tbody></table>
</form>
所以我叫http://www.w3schools.com/xml/tempconvert.asmx/CelsiusToFahrenheit
我尝试使用POSTMAN
但是结果是
404 Not Found
当我将50粘贴到表格中时,情况相同。然后点击HTML中的按钮
404 - Page not found
我的问题是我做对了吗。我现在真的很困惑。如果我在做什么是正确的。如果不是这样的话,正确的方法是什么
答案 0 :(得分:0)
如果他们自己的示例不起作用,则可能是API不起作用或已被删除。在我看来,您真的不能对此做很多事情
答案 1 :(得分:0)
检查API的规格后,我看到的是您必须通过urlencode而不是原始调用。 ,但我仍然相信该API不再有效