Skip to content

Instantly share code, notes, and snippets.

@techslides
Last active January 1, 2022 23:03
Show Gist options
  • Star 33 You must be signed in to star a gist
  • Fork 11 You must be signed in to fork a gist
  • Save techslides/9569cb7c7caa5e95bb7b to your computer and use it in GitHub Desktop.
Save techslides/9569cb7c7caa5e95bb7b to your computer and use it in GitHub Desktop.
GitHub API to make Gists with Ajax
/*
Assuming jQuery Ajax instead of vanilla XHR
*/
//Get Github Authorization Token with proper scope, print to console
$.ajax({
url: 'https://api.github.com/authorizations',
type: 'POST',
beforeSend: function(xhr) {
xhr.setRequestHeader("Authorization", "Basic " + btoa("USERNAME:PASSWORD"));
},
data: '{"scopes":["gist"],"note":"ajax gist test for a user"}'
}).done(function(response) {
console.log(response);
});
//Create a Gist with token from above
$.ajax({
url: 'https://api.github.com/gists',
type: 'POST',
beforeSend: function(xhr) {
xhr.setRequestHeader("Authorization", "token TOKEN-FROM-AUTHORIZATION-CALL");
},
data: '{"description": "a gist for a user with token api call via ajax","public": true,"files": {"file1.txt": {"content": "String file contents via ajax"}}}'
}).done(function(response) {
console.log(response);
});
//Using Gist ID from the response above, we edit the Gist with Ajax PATCH request
$.ajax({
url: 'https://api.github.com/gists/GIST-ID-FROM-PREVIOUS-CALL',
type: 'PATCH',
beforeSend: function(xhr) {
xhr.setRequestHeader("Authorization", "token TOKEN-FROM-AUTHORIZATION-CALL");
},
data: '{"description": "updated gist via ajax","public": true,"files": {"file1.txt": {"content": "updated String file contents via ajax"}}}'
}).done(function(response) {
console.log(response);
});
@techslides
Copy link
Author

This article covers how to use the GitHub API with Gists: http://techslides.com/github-gist-api-with-curl-and-ajax/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment