EN VI

What is API?

API is the acronym for Application Programming Interface, which is a software intermediary that allows two applications to talk to each other. Each time you use an app like Facebook, send an instant message, or check the weather on your phone, you’re using an API.
Posts (2)
Questions (3)
2024-03-12 18:00:15
You're currently waiting for GetDataFromApi1Async to complete before you call GetDataFromApi2Async. If you were to call both methods and then await the returned tasks, you'd see them run in parallel....
Tags: c# API async-await
2024-03-13 04:00:05
First you must add a Controller to you API or create an endpoint like this: // here is only the endpoint [HttpGet] [Route("dbcheck")] public IActionResult DbConnect() { return Ok(); } Then add a...
Tags: MySQL asp.net docker
2024-03-13 15:00:05
Your user class only contains fields, no properties. By default, only properties get serialized. In the working case, you are instantiation anonymous types, not Users. Anonymous types by definition ha...
Tags: c# .net API

Login


Forgot Your Password?

Create Account


Lost your password? Please enter your email address. You will receive a link to create a new password.

Reset Password

Back to login