Я хочу создать гист, используя GitHub API.Я пробовал запрос POST ajax:
var gist = {
"description": "Avatars",
"public": true,
"files": {
"check.txt": {
"content": "Avatars list..."
}
}
};
$.ajax({
url: 'https://api.github.com/gists',
type: 'POST',
dataType: 'json',
data: JSON.stringify(gist),
success: function(e) {
console.log(e);
},
error: function(e) {
console.error("Error!: ", e);
}
});
Но я всегда получаю следующую ошибку:
jquery-3.1.1.min.js:4 POST https://api.github.com/gists 401 (Unauthorized)
Кто-нибудь может мне помочь?Спасибо