From 3d69b5f514ed493312f0b9b52799dfd2a9ceb06f Mon Sep 17 00:00:00 2001 From: Devesh Swarnkar <71492529+devesh-0419@users.noreply.github.com> Date: Fri, 7 Oct 2022 17:11:30 +0530 Subject: [PATCH] Added content to Rest in Golang section (#2234) * Added content to Rest in Golang section The tutorial link are specific to Go language * Update content/roadmaps/109-golang/content/107-go-api-clients/100-rest/readme.md * Update content/roadmaps/109-golang/content/107-go-api-clients/100-rest/readme.md Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com> --- .../content/107-go-api-clients/100-rest/readme.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/109-golang/content/107-go-api-clients/100-rest/readme.md b/content/roadmaps/109-golang/content/107-go-api-clients/100-rest/readme.md index 5088a865c..fc77f9e08 100644 --- a/content/roadmaps/109-golang/content/107-go-api-clients/100-rest/readme.md +++ b/content/roadmaps/109-golang/content/107-go-api-clients/100-rest/readme.md @@ -1 +1,8 @@ -# Rest \ No newline at end of file +# REST + +REST (Representational State Transfer) API (Application Programming Interface) is used to deliver user functionality when dealing with websites. HTTP requests are used to communicate with REST APIs so users can navigate a URL website. These URLs can return certain information that is stored as part of the API. + +<ResourceGroupTitle>Free Content</ResourceGroupTitle> +<BadgeLink badgeText='Read' colorScheme="yellow" href='https://go.dev/doc/tutorial/web-service-gin'>Tutorial</BadgeLink> +<BadgeLink badgeText='Watch' colorScheme="red" href='https://youtube.com/playlist?list=PLzUGFf4GhXBL4GHXVcMMvzgtO8-WEJIoY'>RESTful APIs Series</BadgeLink> +<BadgeLink badgeText='Read' colorScheme="yellow" href='https://www.geeksforgeeks.org/rest-api-introduction/'>Introduction to RESTful APIs</BadgeLink>