Originally published on my blog
GitHub Gist Logo (https://github.com/logos)
While working on my side-projects (UnMarkDocs and Webslides), I had to get data from GitHub Gists. Here are the three ways to do it:
1. The JS way
This is the official way to do it, the one that is mentioned in the GitHub Documentation. It consists on adding .js
and including it in an script tag:
2. The JSON way
Adding .json
to the end of the Gist URL returns something like this:
This is very useful when working with Gists server-side
3. GitHub API
Of course, you can use the GitHub API to get this content. According to the API documentation, you have to make a GET
request to https://api.github.com/gists/$GIST_ID
where Gist ID is the part of the URL that appears after your username.
Here’s an example response:
About the Author
👋 Hi! I’m Miguel Piedrafita, a 15-year-old PHP artisan and open-source lover. How about connecting on Twitter?
Originally published at dev.to.