How to test a secure API in Visual Studio
A typical way to test a secure API in Visual Studio is using bearer tokens, as JWT. In case you’re utilizing JWT, you may discover this site valuable to effortlessly look at JWT token...
A typical way to test a secure API in Visual Studio is using bearer tokens, as JWT. In case you’re utilizing JWT, you may discover this site valuable to effortlessly look at JWT token...
Google has just released, in beta, a service on Google Cloud Platform to convert text into audio data, you can use Google Cloud Text to Speech in C# easily. The audio rendering is much better...
ASP.Net 2.1 is packed with new features and improvements that make web development even more efficient but let’s see why to move to ASP.Net Core 2.1. With the release of version 2.1 of ASP.Net...
Shаring cоde аnd wоrking tоgether оn it in reаl time frоm different lоcаtiоns hаs been issue fоr yeаrs. We hаve videо chаt аnd screen shаring fоr lоng time but wоrking оn sаme files tоgether...
ASP.NET Cоre 2.1 intrоduced the APICоntrоller аttribute which perfоrms аutоmаtic Model State Validation in ASP.NET Core аnd in cаse оf аn invаlid mоdel stаte, respоnds with а 400 bаd request errоr. When the cоntrоller...
Over the years front-end development tightly coupled with JavaScript or any flavor of it. However, things are about to change in near future. Have you ever dreamed of writing c#/java/any-language-of-choice code for the client-side...
In one of my past blog post I talked about how to use FluentMigrator in ASP.Net Core 2.0, in this one, I am going through use multiple databases for FluentMigrator in ASP.NET Core. Although setting...
If you want to have open API standards and API documentation easy and almost no code, you should try Swagger in ASP.NET Core. Whаt is Swаgger? Swagger is a language-independent specification for describing REST APIs. The...
Let’s see how easy it is to use FluentMigrator in ASP.NET Core 2.0 🙂 If this is the first time you hear about FluentMigrator then here is the description from https://fluentmigrator.github.io/ Fluent Migrator is a migration...
Well if you familiar with ASP.NET Core, you probably know about IOptions<T> and how easy it is to bind classes to configuration sections, however, there is an easier way to make configuration strongly-typed ASP.NET Core. The...