import { addBanner, addArticle, addTitle, addHeader, addParagraph, addClassParagraph, addCaption, addSubHeader, addOrderedList, addUnorderedList, addBlockquote, addQuote, addInset, addInsetList, addInsetCodeListing, addInsetBulletList, addImageWithCaption, addButtonGroup, addSidebar, addSyntax, menu, global_menu } from '/scripts/import.js'; import { local_menu } from '/scripts/webdev.js'; const heading = document.querySelector(".heading"); const global = document.querySelector(".global_menu"); const local = document.querySelector(".local_menu"); const sidebar = document.querySelector(".sidebar"); const main = document.querySelector(".main_content"); heading.append(addTitle("Learning REST APIs")); heading.append(addParagraph("Morten Rand-Hendriksen - LinkedIn Learning - February 2018")); heading.append(addParagraph("Chapter 5 - Conclusion")); main.append(addHeader("Next Steps")); main.append(addParagraph("This course provides a good foundation in terms of what a REST API is and how it works. The next step is to start using that knowledge by using and building REST APIs. There are plenty of courses avialble on LinkedIn Learning if you want to expand your knowledge in this area and if you are interested in using a particular language with REST, you can search for REST APIs with that language. For instance, if you search for rest apis java, there are several relevant courses returned including Calling REST APIs with Java by Kevin Bowersox, released in April 2021 or Java Essential Training: Objects and APIs by Angie Jones, released in May 2022.")); main.append(addParagraph("This course is part of the Learing Path, Becoming a RESTful API Developer which also covers HTTP Essential Training, Designing RESTful APIs, API Testing and Validation and Web Security: OAuth and OpenID Connect.")); addSidebar("webdev");