Clear, short, great video. I appreciate these kinds of videos where you don't waste time and just give the info the title said it was about.
@jonajo2612 жыл бұрын
Good job, clear , rapid, just what i needed. thank you for your work.
@shando_tube Жыл бұрын
Excellent content. Clearly articulated and explained. Thank you!
@shashishekhar----2 жыл бұрын
That is one of the most outstanding videos I have seen on this topic, what a dude, thank you brother 👍.
@sahinislam11632 жыл бұрын
HOw to create this local.example file???
@luckbeforeleap3 жыл бұрын
Nice explanation. Does Basic Authentication operate on a per-webpage basis only ? Do I need a separate mechanism to allow authenticated "sessions" so that the user will beauthenticated for any page they browse ? Thanks
@bdemers3 жыл бұрын
It's best to NOT mix Basic Auth, and sessions. Pick one or the other if possible. With Basic Auth your browser will remember the password and submit it on each request back to the server. With sessions your password is only sent to start the session (exchanging a long term credential, for a short term credential). It is possible for a server to accept both, for example the server could default to returning some sort of login page (or redirect to login page) instead of returning a 401. Any API client that needs to use Basic Authentication would need to "preemptively" include the "Authorization" header on each request.
@luckbeforeleap3 жыл бұрын
I appreciate your expertise and your reply. Many thanks
@tsunghan_yu Жыл бұрын
@@bdemers > With Basic Auth your browser will remember the password and submit it on each request back to the server. Where is it stored? Cookies?
@bdemers Жыл бұрын
@@tsunghan_yu It's browser specifc. This is also one of the reasons that basic auth isn't a good choice for the end user. NOTE: A server can respond with a session cookie (or other cookies), but those would not store a password.
@Jtube0101Mega10 ай бұрын
Good lesson! Thank you very much!
@janakaidh43834 ай бұрын
Thanks, please advise how we can pass basic authentication header and open a browser using java script (window.open)
@windblue10202 жыл бұрын
clear and easy to understand. thank you
@aliasgarlokhandwala49482 жыл бұрын
Clear and to the point. 👍
@SantoshSharma3 жыл бұрын
nice video. one question. Can you please tell. how you created webpage for basic auth ? it will help in practicing
@psykoj3 жыл бұрын
Very helpful, but as someone mentioned, can we see the code for the request? What does the header look like?
@diptikulkarni49902 жыл бұрын
didn't understood as u said..... its created in browser and not in any web page...means where?
@pajeetsingh2 жыл бұрын
Is this safe? Do commerical corporation use Apache auth basic provider module or they use some pre-webserver(before landing on webserver) or post-webserver(redirect by Apache web-server) to do authentication and Authorization?
@kassuelo81242 жыл бұрын
When is recommended to use the basic auth? Give me examples
@astonish11092 жыл бұрын
With the basic auth being depreciated; One of our vendors have reached out requesting that we need to make the changes in our Azure environment, to grant them office 365 exchange online api app permission. This external vendor app only applies to one of our custom domain. My concern is I do not want to give access to all other custom domains in my organization to this external vendor app. And if I do grant the external vendor app access to the org wide, how much of our org environment will be exposed to the vendor, what kind of access will they have etc. Is it possible to enable and grant my office 365 exchange online api permissions to an external vendor app specifically to one of my custom domains?... Just wondering also, if this can be done by specifying a security dynamic azure group and add members? Any suggestions and how would very much appreciated. Many thanks
@gaveno11 Жыл бұрын
Hi there. Not sure if you found a solution for this but in your Azure app registration you can define the api permissions.
@Nethanel7732 жыл бұрын
Thanks for putting this up.
@IvanRandomDude3 жыл бұрын
It is basic indeed
@destinyjames611711 ай бұрын
What happens if i have multiple ":" in the username and password
@klobertabdurakhmanova21472 жыл бұрын
Thank you for the video, unfortunately we have to do this in school
@alexanonymous58232 жыл бұрын
thanks a lot : ) really useful video
@xxmsaxx Жыл бұрын
The problem with basic AUTH nowadays, it that even if its inside https your ISEC team or the ISEC team of your API integrations partner will often demand more. One could produce exception documentation to prove its acceptable in accordance to sensitivity of material being transmitted if thats the case, but at this point its best to create an oauth solution rather than burning time on justification docs every time your application needs to make a new API integration.
@littlered63402 жыл бұрын
Dunno if anyone else had this problem, but --user worked for me even though auth didn't.