jQuery Ajax를 사용하여 Github API에 액세스하고 인증을 위해 기본 인증 헤더를 추가 할 수 있습니다 ( 여기 참조 ). 아래에 예제가 표시되어 있습니다. 그러면 지정된 리포지토리에 대한 문제가 발생하고 경고 창에 처음 10 개가 표시됩니다.
https://developer.github.com/v3/issues/ 에서 문제를 가져 오는 방법에 대한 설명서 를 참조하여 필터링, 정렬 등에 사용할 수있는 매개 변수를 확인하십시오.
예를 들어 다음을 사용하여 'bug'라고 표시된 모든 문제를 얻을 수 있습니다.
/issues?labels=bug
여기에는 여러 레이블이 포함될 수 있습니다 (예 :
/issues?labels=enhancement,nicetohave
당신은 쉽게 테이블 등을 나열하도록 수정할 수 있습니다
const username = 'github_username'; // Set your username here
const password = 'github_password'; // Set your password here
const repoPath = "organization/repo" // Set your Repo path e.g. microsoft/typescript here
$(document).ready(function() {
$.ajax({
url: `https://api.github.com/repos/${repoPath}/issues`,
type: "GET",
crossDomain: true,
// Send basic authentication header.
beforeSend: function (xhr) {
xhr.setRequestHeader ("Authorization", "Basic " + btoa(username + ":" + password));
},
success: function (response) {
console.log("Response:", response);
alert(`${repoPath} issue list (first 10):\n - ` + response.slice(0,10).map(issue => issue.title).join("\n - "))
},
error: function (xhr, status) {
alert("error: " + JSON.stringify(xhr));
}
});
});
다음은 jQuery 및 Github API를 사용하는 (공용) 리포지토리에 대한 스 니펫 목록 문제입니다.
(여기에 인증 헤더를 추가하지 않습니다!)
const repoPath = "leachim6/hello-world" //
$(document).ready(function() {
$.ajax({
url: `https://api.github.com/repos/${repoPath}/issues`,
type: "GET",
crossDomain: true,
success: function (response) {
tbody = "";
response.forEach(issue => {
tbody += `<tr><td>${issue.number}</td><td>${issue.title}</td><td>${issue.created_at}</td><td>${issue.state}</td></tr>`;
});
$('#output-element').html(tbody);
},
error: function (xhr, status) {
alert("error: " + JSON.stringify(xhr));
}
});
});
<head>
<meta charset="utf-8">
<title>Issue Example</title>
<link rel="stylesheet" href="css/styles.css?v=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.4.1.min.js" crossorigin="anonymous"></script>
</head>
<body style="margin:50px;padding:25px">
<h3>Issues in Repo</h3>
<table class="table table-striped">
<thead>
<tr>
<th scope="col">Issue #</th>
<th scope="col">Title</th>
<th scope="col">Created</th>
<th scope="col">State</th>
</tr>
</thead>
<tbody id="output-element">
</tbody>
</table>
</body>
{ "message": "Not Found", "documentation_url": "https://developer.github.com/v3/issues/#list-issues-for-a-repository" }
있지만 나는 그것을 읽고 개인 저장소에 액세스하려고 할 때 분명히 표준 응답이므로 jQuery 프레임 워크에서 JavaScript를 사용하여 OAuth 등 FWIW를 연구합니다.