Feb 23 · 6 min read · If you are a developer and if you have ever worked with APIs, you would have definitely come across CORS issue. And yes I get it, it is very irritating issue. Don't worry, by the end of this blog, you
Join discussion
Feb 17 · 6 min read · In the past, integrating diverse web applications or services for embedding purposes was often hindered by the same-origin policy's limitations. This policy posed obstacles to cross-origin requests, impeding access to resources from different domains...
Join discussion
Oct 14, 2024 · 11 min read · In today's digital world, when data breaches and cyber threats are more common than ever, developing safe online apps is essential. Django is a well-known and powerful web framework with integrated security measures. However, you might need to add mo...
Join discussion
Jul 13, 2024 · 4 min read · What is CORS? CORS stands for Cross-Origin-Resource-Sharing. Let us say your backend is an API-only app and it is deployed on Heroku. Your frontend is deployed on Netlify. So your frontend will be communicating with your backend which is on a differe...
Join discussion
Apr 28, 2024 · 8 min read · According to MDN Web Docs, - The same-origin policy is a critical security mechanism that restricts how a document or script loaded by one origin can interact with a resource from another origin. If you are a web developer or someone learning node....
SSSwapnoneel and 1 more commented
Apr 13, 2024 · 2 min read · What is CORS? Cross-Beginning Asset Sharing (CORS) is a security system that permits web servers to indicate which starting points approach the assets of a web application. In less complex terms, it controls admittance to assets from various beginnin...
Join discussion
Feb 20, 2024 · 3 min read · CORS facilitates the sharing of resources between different origins. Many of us have encountered CORS errors on the client side and may have successfully resolved them. However, let's deep dive into what transpired behind the scenes. Our browsers en...
Join discussion
Dec 5, 2023 · 1 min read · CORS stands for Cross-Origin Resource Sharing. It is a security feature implemented by web browsers that controls how web pages in one domain can request and interact with resources hosted on another domain. Web browsers have a same-origin policy, wh...
Join discussionJul 11, 2023 · 3 min read · CORS, or cross-origin resource sharing, happens when an endpoint being served from domain-A.com is requested from another domain-B.com. The server hosting the endpoint at domain-A.com first reads the Origin header sent from the browser, which tells ...
Join discussion