当没有文档时,如何计算HTTP请求所需的标头

时间:2018-02-04 17:55:15

标签: javascript api react-native

此API没有文档,还有许多其他API可用。如何确定成功的GET(和其他)请求所需的HTTP头?

例如:我可以使用以下cURL

从以下API端点请求XML

curl -H "Accept: application/xml" -H "Content-Type: application/xml" -X GET http://api.irishrail.ie/realtime/realtime.asmx/getStationDataByNameXML\?StationDesc\=Bray

http://api.irishrail.ie/realtime/realtime.asmx/getStationDataByNameXML?StationDesc=Bray

但我收到了

尝试通过代码获取请求时

TypeError: Network request failed at XMLHttpRequest.xhr.onerror

以下是我正在使用的请求元数据:

method: "GET", headers: { Accept: "application/xml", "Content-Type": "application/xml"

0 个答案:

没有答案