Where is the best resources for learning how to use Rest API? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Where is the best resources for learning how to use Rest API?

I recently was told that I could use this tool to make specific requests on a system. The report building is a little behind so this is what was given to me as a workaround. Anything will help. not sure what language it is either.

27th Jan 2017, 4:45 AM
Casey Hesse
Casey Hesse - avatar
2 Answers
+ 1
Rest Api can be done in almost any language but you can use ASP.NET for this as well as django and php. Since you tagged c# i would suggest asp.net since its basically the same thing. Good place to start would be https://youtu.be/zWFoZb6EiwU https://youtu.be/0iT1q7U-XeA In other words rest api is just that, an api you build to handle requests and information over the Internet. Whatever language you end up choosing the basic principles remains. I use this personally to handle database requests on desktop app to not store or handle sensetive database information client side. Fun fact is that solo learn runs on asp.net iis serverside :)
27th Jan 2017, 5:00 AM
Alex
Alex - avatar
0
RESTful API is an API Structure rather than an API itself. You create a RESTful API, It uses JSON as a print out of requested data from a database. http://www.restapitutorial.com/
27th Jan 2017, 4:59 AM
Louis Milotte
Louis Milotte - avatar