我正在我的页面上使用基本的git用户搜索框,但在此出现此错误。 403(Forbidden)”。这是我正在使用的JavaScript代码。任何人都可以帮助我。
function showHint(str) {
var xhttp;
if (str.length == 0) {
document.getElementById("txtHint").innerHTML = "";
return;
}
xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
users = JSON.parse(this.responseText);
document.getElementById("txtHint").innerHTML = users.items[0].login
}
};
xhttp.open("GET", "https://api.github.com/search/users?q="+str, true);
xhttp.send();
}
答案 0 :(得分:0)
将此文件保存在本地并调用showHint()
函数。
<!DOCTYPE html>
<html>
<head>
<script>
function showHint(str) {
var xhttp;
if (str.length == 0) {
document.getElementById("txtHint").innerHTML = "";
return;
}
xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
users = JSON.parse(this.responseText);
document.getElementById("txtHint").innerHTML = users.items[0].login
}
};
xhttp.open("GET", "https://api.github.com/search/users?q="+str, true);
xhttp.send();
}
</script>
</head>
<body>
<button onclick="showHint('amardeep')">Click me</button>
<div id="txtHint"></div>
</body>
</html>