I was bummed this wasn’t mentioned. I used it at a previous job just for s&g’s
@scoutgaming737 Жыл бұрын
The "sir this is wendy's" if status codes
@kennethbass19152 жыл бұрын
simple to follow and thorough. EXACTLY WHAT I NEEDED!
@jagritysharma68572 жыл бұрын
I was searching a lot of videos on it but seriously you have explained in a very perfect manner.. a big thanks to you..😀
@melikalcicek76022 жыл бұрын
Great instructor. I've searched on youtube to review API and and I've seen your video. I watched it and subscribed immediately.
@Valyssi2 жыл бұрын
Just a note about 5xx (e.g 500) status codes, although they are server errors, they can be caused by client issues like bad input. However, when that is the case, a 500 status code suggests the server failed to handle that incorrect input. For example, say you require the user to input a number using a text field, on the server you use a function to cast it to a Number. If the user entered non-numeric content and the server failed to validate it / handle errors, it will usually send a 500 status code even if the client _could_ prevent it with correct input. Of course it still remains the duty of the server to validate that input, handle errors, and send 4xx status codes if the issue is simply malformed input.
@davmarius4h2 жыл бұрын
Very easy to understand! You really know how to teach! Great tutorial!
@W3r3-w0lf Жыл бұрын
thanks Kyle you are the best !!! this was best explanation that I've ever had in server-side in web development
@bilalsheikh53944 жыл бұрын
Very well explained. Thank you!
@mohamedtaha2025 Жыл бұрын
i'm using sony wh1000-xm5 and i think u need to work on the auido , the video is good for sure
@theapothesus44013 жыл бұрын
Like the calm and thorough explanation thanks!
@Smugify10 ай бұрын
Thanks bro this was simple and easy to understand
@lineasdessertdiary2 жыл бұрын
You have the answers to all my questions. Thank you.
@JaiminDesai26122 жыл бұрын
Thanks for such simple explanation and the reference URL too!
@vish12112 жыл бұрын
Amazinggggggggggggggg !! Just what I needed. Thank you !!
@nizamuddinshaikh31855 жыл бұрын
By this time, I have seen your about ten videos on web development. They contain explanation simple to follow. Can you make a video on functional programming in JavaScript showing the basics and a few practicle examples? That will be of immense help to beginners. Thanks. 😃
@WebDevSimplified5 жыл бұрын
I have a video on pure functions in javascript which is part of functional programming.
@weichen28594 жыл бұрын
@@WebDevSimplified 1
@weichen28594 жыл бұрын
1
@hinafraz5282 жыл бұрын
loved the video, saved tons of my time
@tymothylim65503 жыл бұрын
Thank you very much for this video :) It was very helpful and clear for me! :)
@mehershewon93012 жыл бұрын
Thank you so much very clear and fast
@malikshaik66625 жыл бұрын
But you forgot to explain about the 409 Conflit , Remaining explanation is awesome.
@erichepperlewp2 жыл бұрын
This is a great little overview of common HTTP status errors. Today I ran into a weird one that I've never seen when logging in with correct credentials to my personal website: #412Error It says this "Your request got filtered out due to possible security issues." Huh? I'm wondering if this is a new implementation of the 412 (apparently it can have multiple explanations about what precondition is referring to). Could this be an issue where some new standard was implemented recently for security? Would love to see a video on this!
@umairqamar26722 жыл бұрын
you're the best man!
@denniresanchez51213 жыл бұрын
Thanks! good explanation.
@MontyKsycki4 жыл бұрын
Thank You Again for Sharing!!! :)
@blixerblacking42112 жыл бұрын
Thanks dude
@sebastianmedina51062 жыл бұрын
thanks for the information
@danko95bgd5 жыл бұрын
I'm a teapot is all you need to know
@parvejsolkar1233 жыл бұрын
Thank you for the complete list link ☺️
@johnmahugu35274 ай бұрын
thank you so much for this
@sahidulislamjony57692 жыл бұрын
You are really great
@njw12333 жыл бұрын
Awesome explanation. Thanks!
@pranavwani2 жыл бұрын
Thank you
@usama579264 жыл бұрын
amazing video
@domi-covers2 жыл бұрын
thaanks) this video is reeeally useful...
@jackdrost95553 жыл бұрын
Excellent explanation.
@SanjayKumar-un7xf2 жыл бұрын
Thanks for sharing such a valuable content buddy :)
@EdeYOlorDSZs2 жыл бұрын
Very clear, thanks a lot
@dmytromoroz44513 жыл бұрын
Thanks for great explanation!
@nataliasokolova29895 жыл бұрын
Thank you!
@ishumba4 жыл бұрын
Good video. Well done.
@hardeepkainth85884 жыл бұрын
Thanks
@BalloonSchool Жыл бұрын
What do I should use when I want to update my side in the backend and the website will be online again in 1-2 hours? 200 or 503?
@its_just_me_5 жыл бұрын
Thank you K .. ❣️
@WebDevSimplified5 жыл бұрын
You're welcome!
@todd.mitchell Жыл бұрын
420 Enhance Your Calm is a little hazy
@carlonnrivers5 жыл бұрын
Really interesting, thank you for explaining it. You said on making rest APIs. I notice some kf those status codes are handled by express and nodejs already (500 when the database was down, but at least now I know what it means). So I don't have to make functions to send status codes and handle status codes when users navigate my site then? Is the simple check authentication enough to keep out those users, or should I send also a 403 forbidden instead of just redirecting them to the home page?
@WebDevSimplified5 жыл бұрын
You can redirect them to the home page and that should be sufficient
@ommapari2 жыл бұрын
Enjoy Notes : 😀😀 Please Like it so that I will revise it again and again with new notification - 2xx The Request you made is Get request - 200 OK | success msg e.g Your get request is successful - 201 Created | Shows you created something e.g created item, created some resources - 204 No Content | no content to return e.g you deleted something but have nothing to return - 4xx Error from client/user side - 400 Bad Request | bad parameter sended e.g create new user so server want name & email but don’t send them email - 401 Unauthorized | I need a api key but you didn't send it or you need to be login for it | I don’t know who you are - 403 Forbidden | when basic user to access admin feature | I know who you are but cant access it so go away - 404 Not Found | you access part of info that does not exist 5xx Error from server side 500 Internel server error server broken or somenthing bad happened from server side
@agk43252 жыл бұрын
He's stares through your soul
@lancemarchetti86732 жыл бұрын
Nice!
@raymondbyczko Жыл бұрын
Good work!
@parasarora58695 жыл бұрын
it's goooooood !!!... 👌👌 ... also thanks for the site
@WebDevSimplified5 жыл бұрын
You are very welcome.
@Sivaprabu4 жыл бұрын
we can given custom http status codes like 7,1000,15000,15010,519,1287,366,1442,1232,1233,17000 ?
@cristhiancantillo49225 жыл бұрын
You're such an interesting youtuber... I think you don't have that muck skill of talking to the camera... but damn man! you explain everything so easy.... Keep on!
@WebDevSimplified5 жыл бұрын
Thanks. I am not a very high energy person so I am pretty monotone and boring when I speak, but I'm glad that doesn't bore you too much.
@cristhiancantillo49225 жыл бұрын
@@WebDevSimplifiedAbsolutely no! You're one of the most usefull youtubers someone can find. Keep on man!
@ramadhanbridge975 жыл бұрын
Remember to use 405
@vaibhavpande56972 жыл бұрын
I had one query, let's say we hit the URL and the server is down so we will get the 5xx error code, right ? So my question here is if the server is down when who is sending us(the client) that error code ?
@rcdmdedl72429 ай бұрын
About status code of applications Browser is had HTTP status codes, however applications are not had Status codes in Japan. Why are not there? I want to know the reasons. I don't know whether the reason will be had by applications or OS not.
@gtmgtm88885 жыл бұрын
Please make angular js tutorial
@Nitishkumar-dp6yk Жыл бұрын
Your voice is same as the guy with channel "your daily dose of internet"
@shaghayeghbaghestani87712 жыл бұрын
perfect :)
@____prajwal____5 жыл бұрын
Can you please make a video that explains Angular entirely?
@WebDevSimplified5 жыл бұрын
I first need to learn angular and it is pretty low on my list of things to learn right now.
@____prajwal____5 жыл бұрын
@@WebDevSimplified React would be fine too!
@WebDevSimplified5 жыл бұрын
@@____prajwal____ I actually have a full course on React coming out on Tuesday. If you want to be notified when it releases you can sign up for the email list here: courses.webdevsimplified.com/learn-react-today You will also get an exclusive discount if you sign up through the email list.
@augischadiegils.51092 жыл бұрын
❤️❤️❤️❤️
@romj564 жыл бұрын
You never close your eyes
@RayfranRocha4 жыл бұрын
If I try to get some resource by id (ex. Product) and it isn't in the database. Do I have to return code 200 with a message 'Product not found' ? Or there is another code to respond properly to this case?
@soludev20014 жыл бұрын
take a look on swagger example (on delete for example), I understood that in this case you have to return 404. The page is petstore.swagger.io/
@madhumitasarkar32723 жыл бұрын
will you ever blink
@stockacts63163 жыл бұрын
What is http/200 188 mean? I know the 200 is OK, but what is the trailing 188?
@spwn86032 жыл бұрын
Hello! When i open an application, i get this error " unhandled http status code 0" do you how to fix this?
@GauravForReal3 жыл бұрын
he dont even blink
@austin.valentine Жыл бұрын
Would you care to address the whole returning 200 with an error message debate?
@hariprasath033 жыл бұрын
How to solve error 506 varient also negotiates
@centerwing2101 Жыл бұрын
You look like Shubhman Gill
@A_Lesser_Man5 жыл бұрын
is it better to use a 4xx status instead of 3xx status for invalid username/passwords? seems i should. what about 200 ok? why not that one? the request doesn't fail, it's not a server error, and nor is it a client error (the data sent may not succeed in a login, but the data isn't necessarily invalid), so for the moment, when users enter the wrong password, the site returns: status: 200 ok set-cookie: e=Access%20Denied; [....the rest here] location: /
@WebDevSimplified5 жыл бұрын
You should probably be returning a 403 status code since that means the users credentials are incorrect.
@DutchRatedGamers5 жыл бұрын
It's best to be specific when designing REST API's or when you create a (web-)app which uses it due to it for one being easier to understand and for two it's somewhat easier implementable. Additionally, the webbrowser can do some more with it, which might be a nice side-effect.
@okekejohnson28782 жыл бұрын
He didn't blink
@atishkumarnirmalkar50572 жыл бұрын
you missed 409
@sartaajsingh58613 жыл бұрын
Oho
@fernandohood55422 жыл бұрын
606?
@beecee47564 жыл бұрын
Blink man blink!
@filcondrat5 жыл бұрын
hands on 420
@ABHIJITMSAWANT2 жыл бұрын
My apartment number is 404 and my postman never finds it
@azamatjumaniyazow5946 Жыл бұрын
Give me domain this status please bro 🙏 can I use for vpn
@mikeba38097 ай бұрын
418
@BoredBricks5 жыл бұрын
Is it ok for developers (especially junior ones) to copy both the code and design and template of a portfolio website tutorial as long as they understand all the code and tutorial? I’ve had people tell me that I can’t do that and you should 100% code and design your own site from scratch fully on your own.
@WebDevSimplified5 жыл бұрын
I think it is ok to take inspiration from another site but you should at least write out the code yourself even if it is very similar. It will really help with learning and understanding. Also your portfolio is supposed to be a showcase of your skills so if you copy someone else it doesn't really show your skills.
@BoredBricks5 жыл бұрын
Web Dev Simplified Right. I also don’t want to end up “re-inventing the wheel” either.
@WebDevSimplified5 жыл бұрын
@@BoredBricks re-inventing the wheel is ok to an extent when you are learning. It is a great way to learn.
@BoredBricks5 жыл бұрын
Web Dev Simplified Also right but I’m beyond that. I’ve gone beyond past HTML and CSS but I just don’t know how to design a good looking site from scratch on my own, that’s why I was asking you if it’s ok to copy a design or code from somewhere and change the content to my liking as long as I can still 100% understand and explain everything. I’ve also heard no one codes websites from scratch anymore either.
@WebDevSimplified5 жыл бұрын
@@BoredBricks Sites are almost always coded from scratch for a portfolio. You can copy a design if you want, but just copying all the code is most likely going to not work very well and lead to a site that is very hard to maintain.
@botobeni3 ай бұрын
why you didn't blink once 😭😭
@nested93013 жыл бұрын
500 error ah remind me of Facebook
@zamankhan12555 жыл бұрын
1st viewer
@Ash-td4sx3 жыл бұрын
I strongly suggest you should consider blinking sometimes.
@alilasteve53403 жыл бұрын
403: I know who you are but you cannot access this information. So go away!
@dsevil9 ай бұрын
another payment related status code... 419 You Got Scammed ???