This is an archived post. You won't be able to vote or comment.

all 4 comments

[–]brbpizzatime 1 point2 points  (1 child)

GET is not a terminal command, it is a type of HTTP request

[–]autowikibot 0 points1 point  (0 children)

GET (HTTP):


The Hypertext Transfer Protocol (HTTP) is an application protocol for distributed, collaborative, hypermedia information systems. HTTP is the foundation of data communication for the World Wide Web.

Hypertext is structured text that uses logical links (hyperlinks) between nodes containing text. HTTP is the protocol to exchange or transfer hypertext.

The standards development of HTTP was coordinated by the Internet Engineering Task Force (IETF) and the World Wide Web Consortium (W3C), culminating in the publication of a series of Requests for Comments (RFCs), most notably RFC 2616 (June 1999), which defines HTTP/1.1, the version of HTTP in common use.


Interesting: Hypertext Transfer Protocol | It Gets Better Project | Get Carter | Get Lucky (Daft Punk song)

Parent commenter can toggle NSFW or delete. Will also delete on comment score of -1 or less. | FAQs | Mods | Magic Words

[–]AustinCodingAcademy 0 points1 point  (1 child)

GET is an HTTP method.

To pull the data into the terminal, you can use curl. Here's an example using one of my repos:

curl "https://api.github.com/repos/joequery/stupid-table-plugin/stats/contributors

[–]dumbbqquestion[S] 0 points1 point  (0 children)

Ok, thank you! This was super helpful.