diff --git a/docs/Splashkit/Tutorials/Reviews/making-RESTful-API-call.md b/docs/Splashkit/Tutorials/Reviews/making-RESTful-API-call.md new file mode 100644 index 000000000..4b628da55 --- /dev/null +++ b/docs/Splashkit/Tutorials/Reviews/making-RESTful-API-call.md @@ -0,0 +1,37 @@ +# How to make a RESTful API call using SplashKit + +Date Reviewed: 9th August 2024 + +Reviewed by: Brianna Laird + +## Description + +This tutorial covers how to create a JSON object and make a RESTful API call using SplashKit. The +tutorial goes over using GET resources and POST resources. The tutorial also covers how to handle +the response from the API call. + +The guide only contained code for C++, this was reviewed and tested by following the tutorial. A fix +was made in the C++ code where there was an issue with `to_string`. Then a C# code version and +python code version was created and tested to ensure they work correctly and fit into what the C++ +code was trying to accomplish. I also included examples of what the outputs should be. + +## Confirmation of Passing Quality Checks + +- [x] The tutorial is free of spelling and grammatical errors. +- [x] The tutorial is easy to follow. +- [x] The tutorial uses top level statements in C# and C++. +- [x] The code passes all the Quality Checks. + +## Links + +Website Link: [Tutorial](https://splashkit.io/guides/networking/2-restful-api-call/) + +Pull Request: [Pull Request](https://github.com/thoth-tech/splashkit.io-starlight/pull/147) + +## Improvements and suggestions + +If you have any suggestions for improvements or changes, add here: + +- I think this one is good as is. +- If someone did have more experience in understanding RESTful API calls then this could also be + added.