No video

What is CORS?

  Рет қаралды 65,561

A shot of code

A shot of code

Күн бұрын

Пікірлер: 100
@mib141345
@mib141345 3 жыл бұрын
You explained in 13 mins what I spent hours reading and not comprehending. Thanks!
@Ashotofcode
@Ashotofcode 3 жыл бұрын
Glad it helped Doran!
@jeroincababat565
@jeroincababat565 Ай бұрын
I appreciate that you didn't cut the video when you encountered an error. It demonstrates what happens in real-world coding.
@Ashotofcode
@Ashotofcode Ай бұрын
Cool thanks :-)
@tedisrozenfelds7630
@tedisrozenfelds7630 2 жыл бұрын
I liked that you failed couple of times and then debugged your own code. That actually showed some common mistakes that can be made and should be avoided!
@Ashotofcode
@Ashotofcode 2 жыл бұрын
Cool thanks Tedis 😀
@maspoetry1
@maspoetry1 3 жыл бұрын
i merge to the crowd, great video. thanks. I like when you solve the problems in real time, without editing.
@Ashotofcode
@Ashotofcode 3 жыл бұрын
No problem!
@Hamza_lachgar
@Hamza_lachgar Ай бұрын
Thanks for this amazing tutorial. it clarifies my knowledge about CORS
@ArijeetSarkar7
@ArijeetSarkar7 3 жыл бұрын
It helped me understand what is CORS and I solved a real world problem. The problem was the origin doesn't support any headers and I was sending one. After I removed, it started working.
@Ashotofcode
@Ashotofcode 3 жыл бұрын
Excellent, glad it helped Arijeet :-)
@tajsec498
@tajsec498 3 жыл бұрын
whole day I was struggling with this :)) your explanation was clearrr, thanksss
@Ashotofcode
@Ashotofcode 3 жыл бұрын
Glad it helped! :-)
@mujthabahassan7614
@mujthabahassan7614 4 жыл бұрын
Thanks a lot, I was scratching my head a lot over this but you explained it briefly yet comprehensively
@Ashotofcode
@Ashotofcode 4 жыл бұрын
Hi Mujthaba, glad it was helpful 😀
@suryakiran2207
@suryakiran2207 4 жыл бұрын
More simplified, thanks a lot for great explanation.
@micahnewsum3667
@micahnewsum3667 3 жыл бұрын
Props to this guy for live coding.
@Ashotofcode
@Ashotofcode 3 жыл бұрын
Thanks Micah :-)
@dhruvpatel6937
@dhruvpatel6937 4 ай бұрын
Very clear explanation, thank you kind sir!
@Ashotofcode
@Ashotofcode 4 ай бұрын
Welcome :-) Cheers Mark
@YosepRA
@YosepRA 3 жыл бұрын
So it's all about the back-end setting up CORS headers, and the browser will try to find these headers to determine whether there's CORS violation or not.
@Ashotofcode
@Ashotofcode 3 жыл бұрын
Yep that's a good summary I'd say😀
@joespinelli3604
@joespinelli3604 4 жыл бұрын
Awesome stuff! Thanks for being so clear and the example was very easy to follow:)
@wesleygomes4154
@wesleygomes4154 Жыл бұрын
man, thanks a lot for sharing this knowledge. You made this topic very clear to me now!
@MrParanos
@MrParanos 3 жыл бұрын
Very clear and useful, yet there is still something my mind can't put hand on : in what are CORS useful ? Regarding how easy it is to go arount it... :/
@Ashotofcode
@Ashotofcode 3 жыл бұрын
CORS is actually more about relaxing the existing security, so by default only requests from your own site can be made, which is the same-origin policy. With CORS we can allow other sites to access also. So one good scenario is when our API is on a different domain to our website - in this case CORS will allows us to let the website access our API - as otherwise will be blocked by the same origin policy. Another case is simply a public API and we want to allows anyone to call it, say a weather api, by default it is restricted to just the domain it runs under, so we add CORS to relax this security and allow anyone to call it. So CORS itself is not something to get around - that is the same origin policy - which is pretty locked down in browsers. Cheers Mark
@user-ii5lr1td8h
@user-ii5lr1td8h Ай бұрын
Watched once subscribed twice.
@anishamalynur7748
@anishamalynur7748 4 жыл бұрын
hey quick question one of the options to fix the error was "If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled." could you explain this?
@Ashotofcode
@Ashotofcode 4 жыл бұрын
Hi Anisha, good question, this would be if you simply wanted to check that the service existed, in that it returns a success code, but without any data. I'm not sure when this would be useful, but there are cases I guess. Cheers Mark
@dartme18
@dartme18 3 жыл бұрын
kzbin.info/www/bejne/pnW4kJ2keZeLpqc ; different Anisha I assume :-P
@jessandgary5940
@jessandgary5940 Жыл бұрын
Finally, i get it! Thanks.
@Ashotofcode
@Ashotofcode Жыл бұрын
Glad it helped! Cheers Mark 🙂
@jig4576
@jig4576 11 ай бұрын
Awesome video
@Ashotofcode
@Ashotofcode 10 ай бұрын
Thanks! Cheers Mark 🙂
@nyplace1
@nyplace1 Жыл бұрын
phenomenal explanation!
@jamesscott-nicholson3808
@jamesscott-nicholson3808 3 жыл бұрын
Thanks for the video, that's cleared it up for me nicely :). If CORS is something only handled by the browser, I suppose that makes it a fairly weak piece of security. Could a browser / extension be made that simply ignores CORS or injects in the necessary header?
@Ashotofcode
@Ashotofcode 3 жыл бұрын
Thanks James, I'm not really up on the capabitilites of extensions, but they have full control so would think they would be able cause problems here yes. Cheers Mark
@abhijithk1397
@abhijithk1397 3 жыл бұрын
yes, you can find extensions in chrome store that disable CORS
@giorgidzidziguri610
@giorgidzidziguri610 11 ай бұрын
best tutorial out there
@Ashotofcode
@Ashotofcode 11 ай бұрын
Thanks!
@michi19935
@michi19935 7 ай бұрын
One question - maybe anyone knows: Why can i not log out the json response one the first .then method?
@shivarammuthukumaraswamy7164
@shivarammuthukumaraswamy7164 3 жыл бұрын
wonderfully explained.TYSM
@Ashotofcode
@Ashotofcode 3 жыл бұрын
Glad it was helpful Shivaram! Cheers Mark :-)
@BB855036
@BB855036 4 жыл бұрын
Great explanation. Thanks!
@Ashotofcode
@Ashotofcode 4 жыл бұрын
You're welcome!
@sabithapoladi5620
@sabithapoladi5620 4 жыл бұрын
very good explanation
@ninjarogue
@ninjarogue 3 жыл бұрын
Thank you!!! I really appreciate the video!
@Ashotofcode
@Ashotofcode 3 жыл бұрын
Glad it was helpful Aric :-)
@balapraneeth9708
@balapraneeth9708 4 жыл бұрын
Great video. Helped a lot. Thanks mate :)
@Ashotofcode
@Ashotofcode 4 жыл бұрын
Glad it helped :-)
@WolfgangPedain
@WolfgangPedain Жыл бұрын
well done
@Ashotofcode
@Ashotofcode Жыл бұрын
Thanks :-)
@saqlainmushrif6453
@saqlainmushrif6453 Жыл бұрын
Can cors be exploited if some token is in URL?? (GET METHOD) Arbitrary origin is reflected in response with ACAO & ACAC but the token is in URL
@ttoktassynov
@ttoktassynov 3 жыл бұрын
well explained! thanks
@Ashotofcode
@Ashotofcode 3 жыл бұрын
Glad you liked it Timur :-)
@CryptoJitsu
@CryptoJitsu 3 жыл бұрын
Great vid, thank you! QUESTION: When the API does not send back the response header [access-control-allow-origins]... I'm assuming it's still sending back the data in the response body... because the decision to show or not is being done by the receiving browser. This seems insecure and dangerous and something a hacker could get around, no?
@Ashotofcode
@Ashotofcode 3 жыл бұрын
Thanks! Good question - Yes I think you are correct in that the data will be returned - the browsers are pretty solid though so I would think safe - this takes place internally in the browser so not something you can attack with Javascript really. Cheers Mark
@CryptoJitsu
@CryptoJitsu 3 жыл бұрын
@@Ashotofcode thanks!
@smashed5826
@smashed5826 4 жыл бұрын
The explanation was not deep enough, in this video you just explianed CORS is browser security policy stuff and seeing you tried it out for direct access on browser and via ajax call. It could be deeper to explain why browser needs this; what kind of attacks could be implemented if no this security policy on browser; What headers needs to be added to allow browser calls a cors resource, different browsers or same browser with different versions treat different headers to allow CORS; server side API header settings to control the access the resource in different scenarios etc.
@thisurathenuka8362
@thisurathenuka8362 3 жыл бұрын
Nice explanation ❤
@Ashotofcode
@Ashotofcode 3 жыл бұрын
Glad you liked it Thisura :-)
@unknownqweasd
@unknownqweasd 3 жыл бұрын
it was very helpfull, thank you!
@Ashotofcode
@Ashotofcode 3 жыл бұрын
Glad it was helpful! Cheers Mark
@mineralisk
@mineralisk 4 жыл бұрын
Thanks for making the video
@ashwinisidhu
@ashwinisidhu 4 жыл бұрын
shot & easy. Thanks
@iQCudi
@iQCudi 3 жыл бұрын
amazing
@Ashotofcode
@Ashotofcode 3 жыл бұрын
Thank you! Cheers!
@louisecrowe4968
@louisecrowe4968 3 жыл бұрын
Thanks great video :)
@Ashotofcode
@Ashotofcode 3 жыл бұрын
Glad you liked it Louise. Cheers Mark :-)
@ganeshk8682
@ganeshk8682 3 жыл бұрын
Thanks..
@Ashotofcode
@Ashotofcode 3 жыл бұрын
Welcome
@arfan8544
@arfan8544 4 жыл бұрын
Thank You very much. 🤘
@Ashotofcode
@Ashotofcode 4 жыл бұрын
Thanks SM, glad it was useful 😀
@jagadeeshg3756
@jagadeeshg3756 4 жыл бұрын
WoW, Thank you so much!
@ameyapatil1139
@ameyapatil1139 4 жыл бұрын
Excellent ! Thanks !
@erdemarslan3371
@erdemarslan3371 3 жыл бұрын
thx very clear!!
@Ashotofcode
@Ashotofcode 3 жыл бұрын
Thanks Erdem :-) glad it was useful.
@ValentinTruta
@ValentinTruta 3 жыл бұрын
Arrow functions return by default if code is on the same line.
@Ashotofcode
@Ashotofcode 3 жыл бұрын
Nice thanks Valetin!
@daminduliyanage
@daminduliyanage 3 жыл бұрын
Thank You 👍🏻👍🏻
@JulienReszka
@JulienReszka 3 жыл бұрын
audio is very low volume, I wish it wasn't that low
@tonyj4435
@tonyj4435 4 жыл бұрын
Thanks bro
@Ashotofcode
@Ashotofcode 4 жыл бұрын
Welcome 😎
@addtyu6176
@addtyu6176 3 жыл бұрын
I closed the video immediately after seeing Microsoft Edge being used....
@Ashotofcode
@Ashotofcode 3 жыл бұрын
lol fair play :-)
@trumbaron
@trumbaron Жыл бұрын
Confusing for me...
@dartme18
@dartme18 3 жыл бұрын
RIP, SWAPI
@Ashotofcode
@Ashotofcode 3 жыл бұрын
D'oh yep it has died!
@dartme18
@dartme18 3 жыл бұрын
@@Ashotofcode Someone posted a duplicate pretty quickly after SWAPI died (that was six months ago I think?). Our company used SWAPI for interview exercises, so we were happy to see the replacement!
@Ashotofcode
@Ashotofcode 3 жыл бұрын
@@dartme18 Ah yes, swapi.dev, cool thanks!
@Derekbylck
@Derekbylck 3 жыл бұрын
=> return
@Ashotofcode
@Ashotofcode 3 жыл бұрын
Ah yes that one gets me a lot! thanks
@aravind4444
@aravind4444 3 жыл бұрын
please explain with diagram
@ronaldlogan3525
@ronaldlogan3525 3 жыл бұрын
very poorly explained, uses tools people may not be familiar with, the actual subject is almost ignored
@ramiz3570
@ramiz3570 4 жыл бұрын
+
Cross Origin Resource Sharing (Explained by Example)
23:15
Hussein Nasser
Рет қаралды 155 М.
Cross-Origin Resource Sharing (CORS) | Complete Guide
52:17
Rana Khalil
Рет қаралды 70 М.
王子原来是假正经#艾莎
00:39
在逃的公主
Рет қаралды 25 МЛН
What Is JWT and Why Should You Use JWT
14:53
Web Dev Simplified
Рет қаралды 1,1 МЛН
Что такое CORS и зачем он нужен? По простому
8:15
Мир IT с Антоном Павленко
Рет қаралды 61 М.
The Same Origin Policy - Hacker History
12:19
LiveOverflow
Рет қаралды 107 М.
What is CORS? | Cross-Origin Resource Sharing | CORS Explained!
8:26
CSRF and CORS Explained
8:11
Tejas Kumar
Рет қаралды 5 М.
Web Server Concepts and Examples
19:40
WebConcepts
Рет қаралды 244 М.
Learn CORS In 6 Minutes
6:06
Web Dev Simplified
Рет қаралды 720 М.