3 ways to get data from GitHub Gists

Written by m1guelpf | Published 2017/11/28
Tech Story Tags: web-development | gist | github

TLDRvia the TL;DR App

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.


Written by m1guelpf | 22. serial maker, purple-haired dev @worldcoin, core ConstitutionDAO, friendly ambitious nerd.
Published by HackerNoon on 2017/11/28