这是我尝试使用Javascript从jira中提取问题。我已将下面的内容放入汇合html宏中并且什么都没得到。我是否需要在java脚本标记内进行身份验证?如果是这样,任何人都有任何建议或例子。我知道如何使用python验证用户和密码,但我想在使用javascript时它会有所不同
<html>
<head>
<script>
function postGET(){
var url="http://**********/issues/rest/api/latest/issue/*****";
var sdata= "";
var client = new XMLHttpRequest();
client.open("GET", url, false);
client.setRequestHeader("Content-Type", "application/json");
client.setRequestHeader("Accept", "application/json");
client.send(sdata);
document.getElementById("responseText").innerHTML=client.responseText;
}
</script>
</head>
<body>
<input type="button" value="POST GET" onclick="postGET()">
<p id="responseText"></p>
</body>
</html>