Resources  
  • C# HTTP Methods: Safe vs. Unsafe, GET vs. POST in .NET CoreMar 26, 2024. Dive into advanced topics like dependency injection, service configuration, and implementing retry policies and circuit breakers. Elevate your API integration game with this comprehensive guide to leveraging HttpClient effectively.
  • Angular HTTP Interceptors: Sending Tokens with Every RequestMar 24, 2024. In modern web applications, authentication plays a crucial role in securing resources and ensuring that only authorized users can access certain parts of the application. One common way to handle authentication is by using tokens, such as JSON Web Tokens (JWTs).
  • Response Compression in .NET CoreMar 22, 2024. Learn about HTTP compression techniques like Gzip, Deflate, and Brotli to reduce payload sizes and expedite data transmission. Configure response compression in ASP.NET Core, control compression over HTTPS, and understand client-server interaction for efficient data exchange.
  • Implementing Resilient HTTP Requests in C# Mar 16, 2024. Ensuring reliable communication between systems is vital. Learn how to implement resilient HTTP requests in C# using Polly for robust, fault-tolerant applications.
  • Vue.js HTTP Requests: Error Handling, Authentication, and File UploadsFeb 28, 2024. Vue.js, with its simplicity and reactivity, is not only a front-end framework but also excels in facilitating communication between the client and server through HTTP requests. In this article, we will explore four advanced examples that go beyond the basics, showcasing the power and flexibility of Vue HTTP requests.
  • Vue.js HTTP Handling: Dynamic Interactions, State, Uploads, Real-Time DataFeb 28, 2024. Vue.js, with its reactive framework and extensive ecosystem, provides developers with powerful tools to handle HTTP requests seamlessly. In this guide, we will explore advanced examples, extending beyond the basics, to showcase the versatility and capabilities of Vue.js in dealing with data fetching, error handling, and utilizing external libraries like Axios.
  • Third-party API Integration in Asp.NET Core Web APIFeb 20, 2024. ASP.NET Core is a powerful framework for building web APIs, allowing developers to create robust and scalable applications. One of the key features of modern web development is the integration of third-party APIs, which provide access to external services and data.
  • DRY, YAGNI, KISS Engineering PrinciplesFeb 19, 2024. In software development and engineering, certain guiding principles serve as beacons of efficiency and effectiveness. Among these principles, DRY, YAGNI, and KISS stand out as fundamental pillars that shape the way engineers approach problem-solving and project development.
  • Optimize HttpClient Usage in .NET CoreFeb 15, 2024. Dive into advanced topics like dependency injection, service configuration, and implementing retry policies and circuit breakers. Elevate your API integration game with this comprehensive guide to leveraging HttpClient effectively.
  • Use .http files in Visual StudioFeb 13, 2024. In Visual Studio, .http files enable direct API testing within the IDE from Visual Studio 2019 onwards. Before this, developers relied on tools like Postman or Swagger, or unit testing. These files streamline API testing by allowing requests.
  • Validating an HTTP Endpoint to Receive Events from Azure Event GridFeb 07, 2024. This article elucidates the process of validating an HTTP endpoint for receiving events from Azure Event Grid. By creating an Azure Function App with an HTTP-triggered function, you can handle Microsoft.
  • Routing to Controller Actions in ASP.NET Core MVCJan 30, 2024. In ASP.NET Core, routing to controller actions is facilitated through attributes that define route templates, mapping incoming HTTP requests to specific actions. Multiple conventional routes can be established in the Startup.cs file using the MapControllerRoute method.
  • HTTP Requests in .NET Core with HttpClient and HttpClientFactoryJan 30, 2024. In this article, we explore efficient HTTP request handling in .NET Core using HttpClient and harness the power of HttpClientFactory. Learn best practices for scalability, dependency injection, and optimal configuration.
  • How To Generate Curl Script of the HttpClient in .NETJan 29, 2024. The HttpClientToCurl is a NuGet package for generating the curl script of HttpClient in C# (.Net) supported features: Post, Get, Put and Delete. content types: application/json, text/xml, application/x-www-form-urlencoded
  • šŸ–„ļø Incident Handling: Common Malware AttacksJan 23, 2024. Explore the realm of malware attacks, unveiling the intricacies of threats like ransomware, computer viruses, worms, Trojan horses, and adware. Delve into their types, characteristics, and potential impact on computer systems and networks.
  • šŸ–„ļø Incident Handling: Common Domain Attack TypesJan 22, 2024. In this article, we will go through different types of Domain Attacks. Domain attacks, including Typosquatting, Domain Hijacking, Pass the Hash, Pass the Ticket, LDAP Reconnaissance, and Brute Force, with insights and incident-handling guidance.
  • Securing Your .NET Applications With ExamplesJan 20, 2024. In the realm of software development, security remains a paramount concern. This is especially true for .NET applications, which often handle sensitive data and interact with critical systems. By adhering to security best practices, developers can create robust applications that safeguard user information and withstand potential attacks.
  • šŸ–„ļø A Guide to Web Attack Incident HandlingJan 17, 2024. In this article, we will explore various types of web attacks, including Denial of Service (DoS) and Distributed Denial of Service (DDoS), SQL Injection, Cross-Site Scripting (XSS), Command Injection, Local File Inclusion (LFI).
  • Handling CORS (Cross-Origin Resource Sharing) in ASP.NET Core Web APIJan 15, 2024. Demystify CORS in ASP.NET Core! Learn how to seamlessly handle Cross-Origin Resource Sharing and overcome origin-related errors in your Web API with this concise guide.
  • Handling HTTP Delete Method in AngularJS and C#Jan 12, 2024. Explore the effective use of the HTTP DELETE method in this tutorial, focusing on AngularJS frontend and C# backend integration. Learn to implement a streamlined resource deletion process as the AngularJS controller sends DELETE requests to the C# backend's Web API.
  • Handling HTTP Put Method in AngularJS and C#Jan 12, 2024. Learn how to implement an HTTP PUT method in an AngularJS frontend and C# backend. The AngularJS HTML frontend features a form for resource updates, while the C# backend uses a Web API controller. Follow this tutorial for a step-by-step guide on seamless communication between the frontend and backend using the PUT.
  • Handling HTTP Patch Method in AngularJS and C#Jan 12, 2024. Discover the power of the HTTP PATCH method with this tutorial, focusing on AngularJS frontend and C# backend integration. Uncover the nuanced approach of making partial updates to resources, as the AngularJS controller leverages PATCH requests to the C# backend's Web API.
  • Handling HTTP Options Method in Angular and C#Jan 12, 2024. Learn about the HTTP OPTIONS method in this tutorial, focusing on how AngularJS frontend and C# backend work together. See how the AngularJS controller uses OPTIONS requests to communicate with the C# backend's Web API, exploring different options for interacting with the target resource.
  • Efficient Bandwidth Management Using Techniques in .NET CoreJan 11, 2024. Response compression is a vital technique employed in web development to optimize the performance and responsiveness of HTTP applications. By reducing the size of HTTP responses, response compression enhances the user experience, improves page load times, and minimizes bandwidth usage.
  • HttpClientHandler in C#Jan 02, 2024. Unlock the potential of C#'s HttpClient class with HttpClientHandler. Delve into its capabilitiesā€”handling cookies, managing proxies, configuring SSL/TLS, timeouts, and moreā€”to optimize and control HTTP requests effectively.
  • What are Different Type of HTTP Errors and Status Code?Jan 02, 2024. The significance of HTTP status codes, vital indicators of web request outcomes. From informational beginnings (1xx) to server errors (5xx), grasp their meanings for effective communication and issue diagnosis.
  • Handling HTTP Post Request Method in AngularJS Frontend and C# BackendDec 29, 2023. The POST method in HTTP sends data to a server to create a new resource. It's used for submitting informationā€”like form data or JSON payloadsā€”to the server. Unlike GET, it's not idempotent, typically triggering the creation of new entries in databases or systems. POST requests contain a body carrying data to be processed by the server, making it integral for adding fresh content or initiating operations that cause a state change on the server
  • Handling HTTP Get Request Method in AngularJS Frontend and C# BackendDec 26, 2023. This guide explores the utilization of HTTP GET request method within an AngularJS frontend and their corresponding processing and handling in a C# backend. It details how Get types of requests initiated from the frontend interface are managed, interpreted, and responded to by the C# backend, illustrating the communication flow and methods for handling data exchange between the frontend and the server-side C# logic.
  • Building Azure HTTP Trigger Function to Generate QR Codes from Post Request ResponsesDec 24, 2023. We'll guide you through the process of creating an Azure HTTP Trigger Function using Node.js. The goal is to generate QR codes in response to POST requests.
  • Send HTTP Request to SharePoint and get Response using Power AutomateDec 19, 2023. HTTP Request to SharePoint and get Response using Power Automate
  • Using RESTSharp for CRUD Operations in ASP.NET Core Web APIDec 19, 2023. Utilizing RESTSharp for CRUD operations in ASP.NET Core Web API offers a streamlined approach to interacting with APIs. This library simplifies HTTP requests and responses, allowing developers to focus on implementing functionality rather than managing low-level HTTP communication.By breaking down each operationā€”POST, PUT, DELETE, GET, PATCHā€”and providing corresponding code snippets, the process of creating, retrieving, updating, and deleting resources becomes more accessible. The RestClientHelper class encapsulates RESTSharp configuration, promoting code reusability and maintainability.
  • Response Compression in ASP.NET CoreDec 13, 2023. Response Compression. Learn the essentials of response compression in web applications, enhancing performance by reducing HTTP response sizes. Explore benefits, implementation steps, compression providers, levels, and best practices for optimal results.
  • WebSocket in .NETDec 12, 2023. WebSockets have become crucial for real-time communication in web applications, transcending the limitations of traditional HTTP. In .NET, utilizing the System.Net.WebSockets namespace facilitates straightforward WebSocket implementation, empowering developers to establish bidirectional, real-time communication channels. This article guides through creating both WebSocket servers and clients in a .NET environment, offering a powerful solution for building modern, responsive, and interactive web applications.
  • Unraveling .NET Core Web API StructureNov 29, 2023. Unlock the potential of .NET Core Web APIs. This guide explores their fundamental structure, HTTP methods (GET, POST, PUT, DELETE), and practical use cases for building robust and scalable applications.
  • HTTP Status CodesNov 23, 2023. Understanding of HTTP Status Codes. This article provides a comprehensive overview of HTTP status codes, categorized into 1xxs for informational, 2xxs for success, 3xxs for redirection, 4xxs for client errors, and 5xxs for server errors.
  • Securing Your .NET Core APIsNov 18, 2023. This article explains how you can secure your .NET Core APIs with essential practices. It covers JWT authentication, role-based authorization, HTTPS implementation, input validation, and rate limiting. By leveraging these techniques, you can ensure data integrity and prevent unauthorized access.
  • Creating Consistent ASP.NET Core Web API Responses with AutoMapper and DTOsNov 17, 2023. Developing a robust ASP.NET Core Web API hinges on the subtle yet pivotal details of response structuring. Leveraging AutoMapper in tandem with well-designed Data Transfer Objects (DTOs) not only ensures the separation of concerns but also orchestrates a symphony of consistent and predictable API responses. These intricacies extend beyond mere data mapping; they epitomize a strategic approach in harmonizing the internal model intricacies with the API's outward-facing facade. Unveiling the elegance of these detailed mappings and the orchestration of a uniform response structure not only enhances the developer's workflow but also augments client-side integration, presenting an intuitive and standardized communication channel. Addressing these finer points not only establishes a foundation for resilient error handling but also fuels the API's scalability and ease of maintenance, fostering an environment where agility meets reliability.
  • Axios with React/React Native for HTTP RequestsOct 23, 2023. This article explains how to use Axios library in react native for making http requests
  • Decoding the Importance of HTTP Status Codes in Web DevelopmentOct 17, 2023. In today's digital era, staying at the forefront of web development requires a deep grasp of HTTP status codes. These three-digit numbers reveal vital insights into web requests and responses, making them essential for troubleshooting and issue diagnosis.
  • How does ASP.NET Core Process a Request?Oct 13, 2023. ASP.NET Core, a versatile web framework, leverages a modular architecture to process requests through a series of middleware components, enabling customizable handling of HTTP requests and responses.
  • How Does an HTTP Web Request Work?Oct 12, 2023. Explore the fundamental workings of HTTP, the protocol that underpins web communication. Learn about HTTP components, status codes, and the process of client-server interaction.
  • What is Action, Non-Action Methods and Types of Action ResultsOct 10, 2023. In ASP.NET Core, actions are the methods within a controller that handle HTTP requests and produce HTTP responses. These actions can return different types of action results, which determine how the response is formatted and sent back to the client. The term "non-action methods" likely refers to methods within a controller that are not intended to directly handle HTTP requests as actions do.
  • Building a Robust ASP.NET Core Web API with Singleton Design Pattern and Three-Tier ArchitectureOct 04, 2023. This example provides a basic structure for a Three-Tier Architecture in an ASP.NET Core Web API, implementing a Singleton Design Pattern for the Data Access Layer. Remember to adjust the code based on your specific requirements and consider using dependency injection for better testability and maintainability.
  • Building a Microservices API Gateway with YARP in ASP.NET Core Web APIOct 03, 2023. Building a microservices API Gateway with YARP in ASP.NET Core Web API provides a flexible and scalable solution for managing and routing traffic in a microservices architecture. By incorporating features such as service discovery, authentication, authorization, load balancing, rate limiting, and logging, you can create a robust and secure gateway that orchestrates communication between diverse microservices.
  • Model Binding In ASP.NET CoreSep 27, 2023. Model Binding in ASP.NET Core is a fundamental and powerful feature that simplifies the process of mapping HTTP request data to C# model objects. It plays a crucial role in the development of web applications by automating the extraction of data from incoming HTTP requests and populating C# objects, which can then be used to process and respond to those requests.
  • Enhancing ASP.NET Core Web API Responses with Consistent and Predictable Wrapper ClassesSep 27, 2023. In ASP.NET Core Web API, you can use wrapper classes to standardize the format of your API responses. A wrapper class typically contains a status code, a message, and the actual data payload. This helps in providing a consistent structure for your API responses, making it easier for clients to understand and handle them.
  • WSL & Let's Encrypt for Azure App Service SSL Wildcard CertificatesSep 22, 2023. Learn how to use the Windows Subsystem for Linux (WSL) and the Let's Encrypt certificate authority to automate the issuance and renewal of free wildcard SSL certificates for Azure App Service. Leverage Certbot on WSL to obtain certificates and configure Azure apps to use them securely over HTTPS while scheduling automatic renewals to keep certificates always up to date at no ongoing cost.
  • Result Wrapper Package: Simplifying API ResponsesSep 17, 2023. ResultWrapper package is to standardize API responses. This standardization allows for seamless integration with other APIs and ensures that the response format remains predictable and manageable across different parts of your application.
  • Exploring the Art of Middleware Creation in .NET CoreSep 17, 2023. This comprehensive article delves into the various methods of creating middleware in .NET Core, offering real-world examples to illustrate each approach. From inline middleware to class-based solutions and extension methods, you'll gain a thorough understanding of how to shape your application's request-response pipeline effectively. Learn how to order your middleware components for optimal execution and empower yourself to build robust and efficient web applications with ASP.NET Core.
  • Enhancing Client Responses: Crafting Custom Middleware for Effective Error HandlingAug 27, 2023. Designing a robust error handling mechanism and returning meaningful error responses to clients is crucial for enhancing the reliability and user experience of your ASP.NET Core Web API. Here's a concise guide on how to achieve this using custom middleware:
  • Creating Effective Pagination and Filtering Middleware for ASP.NET Core Web APIAug 25, 2023. By incorporating pagination and filtering with custom middleware, you've enhanced your ASP.NET Core Web API's performance and user experience. This methodology enables you to respond more efficiently to client requests, particularly when dealing with large amounts of data. By providing a streamlined API that delivers the right data in a user-friendly manner, you're well-prepared to offer a high-quality experience to your API users.
  • Configure HTTPS for AWS Elastic Beanstalk EnvironmentAug 22, 2023. Learn how to configure HTTPS for Elastic Beanstalk application using a self-signed SSL certificate.
  • HTTP Methods in .NET CoreAug 21, 2023. Explore HTTP methods in .NET Core for effective web communication. Understand GET, POST, PUT, PATCH, and DELETE roles. Utilize Microsoft.AspNetCore.Mvc for seamless handling and API creation. Enhance your .NET Core skills with this comprehensive guide.
  • Implementing Content Negotiation for Flexible Data FormatsAug 16, 2023. Content negotiation in ASP.NET Core is crucial for serving different data formats like JSON, XML, etc., based on the client's preferences. Here's a complete example of how to implement content negotiation in an ASP.NET Core Web API:
  • HTTP Interceptors in AngularAug 12, 2023. Explore the essential concepts of HTTP Interceptors in Angular, their benefits, and practical applications using step-by-step examples with Angular 15, improving HTTP request handling and enhancing functionality.
  • Building Custom Middleware Components for Logging, Error Handling, and Request/Response ModificationAug 09, 2023. ASP.NET Core to handle cross-cutting concerns like logging, error handling, and request/response modification:
  • How to save Microsoft Forms Responses with Attachments to SharePoint Lists?Aug 09, 2023. In this article, we will explore the process of retrieving a Microsoft Forms response that includes an attachment and saving it directly to a SharePoint list.
  • Global Exception Handling In Asp.net Core Web APIAug 04, 2023. In the context of ASP.NET Core Web API (or any web application framework), global exception handling involves catching exceptions that occur during the processing of requests and returning appropriate error responses to the clients. Instead of allowing exceptions to propagate to the top-level and exposing technical details to the end-users, global exception handling can convert those exceptions into more informative and standardized error messages in a format such as JSON or XML.
  • Implementing Real-Time Cache Sync with NCache and SignalRJul 27, 2023. From this article, you will learn how to implement the real-time cache sync with NCache and SignalR
  • HTTP Requests in Power AutomateJul 12, 2023. In this article, we will deal with HTTPs Request in Power Automate and explore its functionalities, and demonstrate how to leverage its power through coding samples.
  • What is Response Caching in ASP.NET Core?Jul 11, 2023. Accessing information efficiently needs responsive caching. The blog discusses how response caching in ASP.NET is used to increase that accessibility.
  • Docker CommandsJul 10, 2023. Docker Commands
  • Push Notification From C# .Net to Android Using FCM HTTP V1Jul 03, 2023. Send Push Notification From C# Dot Net to Android Using FCM HTTP V1.
  • Fix IIS Error: HTTP Error 500.19 - Internal Server ErrorJun 22, 2023. This article discusses a fix to IIS, HTTP Error 500.19 - Internal Server Error.
  • How To Solve Failed to load API definition Response Status 500 in ASP .NET?Jun 22, 2023. ASP.NET is a popular web development framework used to build dynamic web applications. While working with ASP.NET. Developers may encounter the "Failed to load API definition". Response status is 500 error message. This error occurs when the API definition file fails to load due to an internal server error. In this article, we will discuss the possible causes of this error and how to solve it easily and in a simple way.
  • How to Send Weekly Reports to a Group of Users in SharePoint?Jun 19, 2023. How can you send weekly reports to a group of users in SharePoint? Also, how do you create an HTML table?
  • Test HTTP API Endpoint in Visual Studio without using PostmanJun 04, 2023. Test HTTP API Endpoint in Visual Studio without using Postman
  • āš”Effortless Scalability: Discover the Power of Azure FunctionsMay 04, 2023. An Introduction to Serverless Computing
  • 5 HTTP Security Headers You Should Know For SEOMay 02, 2023. Being an SEO beginner, it's easy to overlook the security headers in the regular audits. However, security headers should be your top priority when it comes to optimizing your website. In this article, we'll discuss five HTTP security headers that you should know for SEO.
  • Angular Versions HistoryApr 24, 2023. Angular Versions
  • Handling request at Azure APIMApr 20, 2023. In a typical request flow, an http request starts from a mobile app or a web browser, and somewhere in its path, the http request reaches an API that communicates with some type of database. It could be possible that there are different types of http requests which need the same response from the backend API.
  • Dependency Injection In .NET Core - Understanding The Fundamentals And Best PracticesApr 12, 2023. In this article, you will learn about dependency Injection in .NET Core: Understanding the Fundamentals and Best Practices.
  • Caching Strategies In .NET Core - Using Distributed Cache, Memory Cache And Response CacheApr 12, 2023. In this article, you will learn about Caching Strategies in .NET Core: Using Distributed Cache, Memory Cache and Response Cache.
  • Use Your Own Files To Get Response From GPT Like ChatGPT | PythonApr 11, 2023. This article explains about how you can use your locally stored text files to get responses using GPT-3.
  • Get User Properties With Graph API In Power AutomateApr 10, 2023. In this article, you'll discover how to retrieve user profiles in Microsoft Power Automate using an HTTP request via the Graph API. Learn how to filter user profile information for a specific user based on their ā€˜user principal nameā€™ or other parameters.
  • Mocking API Responses Made Easy With Graph Developer ProxyApr 07, 2023. Improving API Development Workflow and Reducing Costs with Graph Developer Proxy Mocking
  • The Developer's Toolkit: Using localhost and a CDN for Staging and TestingMar 23, 2023. Boost your web development game with HTTPS, localhost, and a unique CDN domain! Learn the best practices for securing your APIs, simplifying your development process, and optimizing your website's performance. Discover the power of localhost and local web servers, and learn how a unique CDN domain can improve website performance and reduce the risk of deploying untested code. Get the edge you need to master modern web development and take your skills to the next level!
  • ASP.NET Core Application With NCache Response CachingMar 19, 2023. In this article, you will learn how to integrate NCache Response Cache in our ASP.NET Core application.
  • What is XDR?Mar 17, 2023. Learn about XDR [Extended Detection and Response] and its benefits.
  • Create Generic HttpClient Call Function With Error Handling In C#Mar 09, 2023. This article presents a step-by-step guide on how to create a generic HttpClient call function in C# that can handle different request methods, request body types, response types, and error handling using optional parameters. By following the provided code examples and explanations, readers can learn how to simplify HTTP requests in their C# applications and reduce the risk of errors.
  • How To Make API Calls In Angular ApplicationsMar 02, 2023. Making API calls is a common task in Angular applications, and it can be achieved using Angular's built-in HttpClient service. Here are the steps on how to make API calls in Angular Applications.
  • How To Get Different Responses From One ClassFeb 22, 2023. In this article, you will learn how to get different responses in one class c# API.
  • How To Implement ChatGPT In Flutter Feb 06, 2023. In this article, you will learn about how to implement ChatGPT in flutter.
  • Generate And Validate JSON Schema With JSON Response Using PostmanJan 30, 2023. In this article, you will learn how to generate and validate JSON Schema with JSON Response using POSTMAN.
  • Understanding And Handling HTTP ErrorsJan 23, 2023. This article provides a comprehensive guide to understanding and handling HTTP errors. It explains what HTTP errors are, the different types of codes that can be returned, and how to properly handle them in web development. The article is aimed at developers and provides important information for ensuring a seamless user experience.
  • Everything - Find Files Instantly In Your PC, Network And HTTP ServerJan 18, 2023. Everything is a tool from void tools. I strongly recommend it for your work, on your projects, documents, or personal.
  • Convert Byte Array Into PDF And Open It Inside Custom Dialog box In AngularJan 11, 2023. We will get byte array as an response from API and same we need to encode and convert into PDF inside Custom Dialog box in Angular, where you can fire events on closing of dialog to fire another event.
  • CRUD Operations With Fake APIs In ReactDec 26, 2022. In this article, you will learn about CRUD Operations with Fake APIs in React.
  • What's New In ASP.NET Core 7.0Dec 22, 2022. In this aricle, you will learn what's new in ASP.NET Core 7.0.
  • How To Implement Spinner Interceptor For Every HTTP Request In Angular ApplicationDec 20, 2022. In this article, you will learn how to implement SpinnerInterceptor For every http request in Angular Application.
  • Error Handling With AngularDec 20, 2022. In this article, you will learn about Error Handling with Angular.
  • Implementing A Proxy Server In C# - An Example And Test CaseDec 09, 2022. In this tutorial, we provide an example of how to create a simple proxy server in a C# application using the HttpListener class. We also show how to write a test case to verify that the proxy server works as expected.
  • Create Multiple Copies Of A Site Page, Rename And Update Properties Using Power Automate Dec 05, 2022. In this article, we will learn to create multiple copies of a SharePoint site page, rename and update its properties using Power Automate "Send an HTTP request to SharePoint" action.
  • How To Use HTTP Interceptor In AngularNov 25, 2022. Angular Interceptor helps us modify the HTTP request by intercepting it before the request is sent to the backend. You can also change the incoming response from the backend. The Interceptor globally captures all incoming and outgoing requests in one place. We can use it to add custom headers to the outgoing request, log the incoming response.
  • HTTP Best Practices Using ASP.NET Core And PollyNov 07, 2022. HTTP best practices using ASP.NET Core and Polly.
  • HTTP Best Practices Using ASP.NET CoreNov 04, 2022. In this article, you will learn about HTTP Best Practices Using ASP.NET Core.
  • Read Microsoft SQL Table And Send The Results As Rest API JSON Response Using PythonOct 31, 2022. In this article, you will learn how to read Microsoft SQL table and send the results as REST API JSON response using Python.
  • Break Inheritance And Set Item-Level Permission Using Power AutomateOct 18, 2022. In this article, we will learn how to set item-level unique permissions in SharePoint using HTTP request with Power Automate
  • Hosting .NET Core Web API images With Docker Compose over HTTPSOct 08, 2022. Hosting .NET Core Web API images with Docker Compose over HTTPS using certificate
  • How to Call A Flow From PowerApps And Get Back The ResponseSep 27, 2022. How to call a flow from PowerApps and get back the response

About HTTP-response

NA

OUR TRAINING