Noor Ahmednoor-ahmed.hashnode.dev·Sep 15, 2023Fixing a CORS errorIntroduction In this article, I will show how you can solve the CORS error which is one of the most common errors that occur when trying to integrate a front-end with the server-side. Problem Statement Let's say that you're building an application an...Discuss·49 readsCORS
Vignesh Ponnuvelsnippetsofcode.dev·Sep 7, 2023What is CORS and it's implementation in ASP.Net Web APIIn this blog post, we will explain what CORS is and how to enable and implement it effectively in ASP.NET Web API. What is CORS? CORS stands for Cross-Origin Resource Sharing, which is a mechanism that allows web browsers to request and receive resou...Discuss·61 reads.NET
sivalaxmansivalaxman8.hashnode.dev·Sep 3, 2023Securing Front-End Apps With CORSPurpose and Scope of this Article In this article, we dive deep into CORS to demystify these security measures for you. We’ll learn how to implement them effectively in various front-end frameworks like React, Angular, and Vue.js, with practical exam...DiscussCORS
Mayank Singhmayankonweb.hashnode.dev·Aug 15, 2023Solving CORS Errors in Express.jsWhile developing a Todo app API and connecting it through the frontend, I encountered a CORS (Cross-Origin Resource Sharing) error. CORS is a mechanism that allows many resources (e.g., fonts, images, scripts) on a web page to be requested from anoth...DiscussMERN stackCORS
Bug And Fixbugandfix.com·Aug 14, 2023IPipeline Behavior - Validationhttps://youtu.be/ydISpffv3Fc Nuget Packages : FluentValidation FluentValidation.DependencyInjectionExtensions GitHub : https://github.com/bugandfix/CQRS-PipelineBehaviourValidationDiscussdotnet
Bug And Fixbugandfix.com·Aug 13, 2023Why do not you use IPipelineBehavior ?!https://youtu.be/z6ZKAoUL4QE GitHub : https://github.com/bugandfix/CQRS-PipelineBehaviourDiscuss·31 readsMediatR
Rohanrohansblog.hashnode.dev·Aug 12, 2023CORS explained using Django and FlaskCross Origin Resource Sharing (CORS) This is a browser mechanism that allows a website on one URL to request data from a different URL. Certain "cross-domain" requests, notably Ajax requests, are forbidden by default by the same-origin security pol...Discuss·39 readsDjango
Ashutosh Soniblog.ashutosh7i.dev·Aug 1, 2023📝 What is RSS Feed and How I Used It to My Advantage 🌐sit tight, lots of interesting things ahead ✅; let's begin- Introduction to RSS Feed 📰 RSS (Rich Site Summary or Really Simple Syndication) is a standard format used to publish and distribute frequently updated content on the web. It allows websites...Discuss·41 readsrss
Aanchalaanchalfatwani.hashnode.dev·Jul 31, 2023How to Optimize CORS Preflight Requests?Cross-origin resource sharing (CORS) is a mechanism that allows web applications to access resources from other domains. However, CORS can add latency to requests, especially if the preflight request is required. The preflight request is an OPTIONS r...DiscussCORS
Rohit Jangidrohitjangid.hashnode.dev·Jul 29, 2023How to Handle 3rd party(public) CORS issueSometimes we have a task to get the data from 3rd party APIs in UI, but UI is unable to handle those APIs and shows a Cors issue as the browser is blocking if the response is coming from other sources. example, If UI is trying to get the data sales f...Discusscontainers