Тёмный
No video :(

C# ASP.NET MVC Authentication - Logging in locally or with OAuth (using Twitter) credentials 

IAmTimCorey
Подписаться 419 тыс.
Просмотров 212 тыс.
50% 1

Опубликовано:

 

22 авг 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 538   
@default632
@default632 4 года назад
I am finally in AUTH stage now! I have planned my databases clearly, using my personal NF rules. 1. Can be many to one? New Table 2. Only one to one? Same Table I am about to do start getting freaky freaky hands on when I realize that, hey, I need auth. And Now I'm here. With just 3 videos, ASP.NET MVC, Data Access and OAUTH, I feel like a professional now. I must say ASP.NET Core MVC is much more clearer and simpler now that I understand that models in ASP.NET MVC is just for views. Sorry for long text, you are the best.
@IAmTimCorey
@IAmTimCorey 4 года назад
I'm glad it is sinking in for you.
@lindelihlesambo4100
@lindelihlesambo4100 3 года назад
Tim is King!!!. you make everything easy. I normally dread long videos but this one seemed like it was 5min the way I was enjoying it.
@IAmTimCorey
@IAmTimCorey 3 года назад
Glad you enjoyed it
@lindelihlesambo4100
@lindelihlesambo4100 3 года назад
@@IAmTimCorey I have been looking for a tutorial like this . Can you help me with a tutorial that explains how to set redirect pages for different users when using default login in MVC with entity. Hopefully one that can also explain how to hide certain tabs in the nav bar based on user roles. Thank you in advance.
@martinvaughan4197
@martinvaughan4197 3 года назад
Great video! It would be really handy to see a follow-up to this detailing how Authorize works behind the scenes and how to take more control over what entity framework is doing.
@tomthelestaff-iamtimcorey7597
@tomthelestaff-iamtimcorey7597 3 года назад
I noted your recommendation by adding it to Tim's list of possible future topics, thanks.
@RalfsBalodis
@RalfsBalodis 3 года назад
0:00 - Intro 1:41 - ASP .NET Framework demo app with authentication 13:01 - Register vs Login explained 15:25 - Built in user registration and login 18:28 - Registration C# code overview 23:45 - Built in SQL 29:45 - Twitter authentication setup 45:37 - Implementing user restrictions 52:48 - Restrictions based on user role 1:01:03 - Who is logged in? 1:02:20 - Summary and concluding remarks
@IAmTimCorey
@IAmTimCorey 3 года назад
Thank you!
@Babaelow
@Babaelow 2 года назад
For those confused: The local authentication is also (still) called "Forms Authentication", although it's not about Webforms anymore. It's somewhat different though than the Webforms thing.
@IAmTimCorey
@IAmTimCorey 2 года назад
I don’t think it was ever about WinForms. It may have been a reference to WebForms, but I don’t think so. I think it is just about needing a login form.
@Babaelow
@Babaelow 2 года назад
@@IAmTimCorey Sorry, I corrected it to "Webforms". I always confound these terms.
@satyabratamohapatra3397
@satyabratamohapatra3397 4 года назад
Best tutorial on OAuth. Clean and to the point explanation. Thank you TIM !!
@IAmTimCorey
@IAmTimCorey 4 года назад
Glad it was helpful!
@ab_obada5012
@ab_obada5012 10 месяцев назад
God loves me so much that I have found your channel :)
@IAmTimCorey
@IAmTimCorey 10 месяцев назад
I'm glad you enjoy it.
@cloud77hot40
@cloud77hot40 4 года назад
Great video man! Thinking of making an app into an asp.net MVC style and I was worried that authentication would be a nightmare. Thanks for making it more simple!!
@IAmTimCorey
@IAmTimCorey 4 года назад
Great!
@jacklee5876
@jacklee5876 4 года назад
Hi Tim. Thanks for great video. I wish I'd seen this a long time ago. I've read numerous tutorials but you've made a seemingly complicated subject a lot easier to understand, this video was perfect for me as a starting point for further study into the subject. Thanks again. :)
@IAmTimCorey
@IAmTimCorey 4 года назад
Awesome! I’m glad it was helpful.
@timothywestern6488
@timothywestern6488 3 года назад
Yeah I tried taking the ApiHelper/Token idea that you did an MVVM app with, took a while but was able to login. Then I decided that Owin was the next thing to learn, but I couldn't figure out why it didn't work out of the box. It turned out, that when I moved it from local to a named instance locally that I had the wrong connection string. So if you run into that issue, check that. I love your work Tim. Really helpful to shake off some of that rust.
@IAmTimCorey
@IAmTimCorey 3 года назад
Glad its helpful, and thanks for sharing.
@preshnaidoo1043
@preshnaidoo1043 4 года назад
Thanks Tim. I know everyone has different opinions and you’ll base your future videos on the majority , but I think the level of repetition is spot on and the content presented in a very clear manner. I am one of those people making my way up to mvc core, so this has been very helpful. You mentioned that you weren’t a big fan of entity, I’d appreciate a video on your take on this and what you do use.
@IAmTimCorey
@IAmTimCorey 4 года назад
I wrote a blog post that addresses your question about EF: www.iamtimcorey.com/blog/137806/entity-framework
@jeppechristensen5707
@jeppechristensen5707 4 года назад
Hi Tim. Thank you very much for the videos that you provide - I've already watched a bunch of them, and found that they help me a lot. Just recently I read the book "Patterns of enterprise application architecture" by Martin Fowler, and figured that you haven't covered much of those patterns as is - other than of cause, general architectural principles that developers should adhere to, i.e. SOLID and DRY. When I read the book, a bunch of these patterns were sort of abstract. I understood the general ideas, but personally it would be extremely helpful to see a seasoned .net developer like you, show them in practical setting, and give your personal opinion on the most common ones. Additionally, now when we talk about patterns... When I see this video, i cant help thinking, how to implement this "out of the box" user authentication system in a common 3-layer application, where we don't use a local database but rather one on a server. How would you implement it in your business logic? would you even do that?
@IAmTimCorey
@IAmTimCorey 4 года назад
I will be covering more patterns and practices, although a lot of them are much more specialized. As for using this authentication on a remote server, you would just point your connection string to that remote database. I'm not a fan of how tied it is to the UI but that's a personal preference.
@TheAngelOfDeath01
@TheAngelOfDeath01 6 лет назад
Brilliant! Thank you so much, Corey. Amazing as always. It would be really nice to see more about Access Control using MVC and C#. Security is super important, but also one of the biggest error zones where developers (especially new developers) make mistakes, often costly ones. In these times where there are hackers, trolls and ghouls all over the place, educating people on security and how to make it easy, but good, is relevant. Thanks, Martin.
@IAmTimCorey
@IAmTimCorey 6 лет назад
Sounds almost like we should have a new start to finish course that is more MVC-focused from the beginning so we can see how to implement this stuff in the real world. ;-)
@davesimon9192
@davesimon9192 5 лет назад
Gone are the days where one could download a shareware copy of Hotdog HTML editor and publish a site with having just a few files. (Which IMO, is a good thing. I feel the internet became convoluted with junk because people could just keep adding trash to the pile not having any technical skill or understanding what's going on under the hood.) Great video!
@IAmTimCorey
@IAmTimCorey 5 лет назад
Thank you!
@Babaelow
@Babaelow 2 года назад
"leaving authentication to Microsoft" can also mean leaving it to your local active directory, not only to Microsoft online services such as azure. However, you may still build your own AUTHORISATION system if you don't want to create AD Groups for everything. Tim, as always, correct me if you shouldn't build that on your own either :)
@drimadoh
@drimadoh 4 года назад
Hey Tim... I can't thank you enough for this awesome stuff.. I'm using some of them in my teachings at university :D Will you be doing anything soon on Xamarin??
@IAmTimCorey
@IAmTimCorey 4 года назад
Yes, I am ramping up my development work in Xamarin so I will be ready to teach it soon.
@sherlockholmes1121
@sherlockholmes1121 4 года назад
Thanks Tim, Finally found someone that can explain how this works.
@IAmTimCorey
@IAmTimCorey 4 года назад
Excellent!
@spfy
@spfy 6 лет назад
Thank you for the video! I didn't know they made Authorization/Identity stuff so easy! If possible, I'd love to see an expansion where you talk about requiring authorization for Web API. Show how someone that wants to use my API for their own applications can authorize themselves for access.
@IAmTimCorey
@IAmTimCorey 6 лет назад
I will be doing authorization through WebAPI in a video in the near future.
@coolwaterdvr
@coolwaterdvr 6 лет назад
I'm loving this ASP.NET series. Thank you. Request: If you decide to make a lesson about EF, can you do a database first approach? Using Stored Procedures in EF would be nice also. Again Thank you.
@IAmTimCorey
@IAmTimCorey 6 лет назад
I doubt I'll be doing an EF video any time soon since I'm really not a fan of EF (check out my video on connecting C# to SQL) but I'll keep it in mind.
@WantOxide
@WantOxide 5 лет назад
I will explain you how it works > 19:00 by large you can leave this as it is and just works Wow, awesome explanation
@softfamilyjay3267
@softfamilyjay3267 6 лет назад
Thanks and you really made it so simple. One word for this. Amazing!
@IAmTimCorey
@IAmTimCorey 6 лет назад
Awesome!
@tnysvntr
@tnysvntr 4 года назад
Hello Tim Corey, I would like to suggest for you to create a complete website or system using asp.net mvc just like the retail manager. That would really help us,me specially to learn a lot from you.. thank you very much
@IAmTimCorey
@IAmTimCorey 4 года назад
That suggestion is on the list. Thanks!
@tnysvntr
@tnysvntr 4 года назад
@@IAmTimCorey thank you Tim!
@hory-portier
@hory-portier 6 лет назад
Thank you for good video and for redirecting me here. Once again I have found less information than I expected but presented in great way. You showed here how to use this generated things but I am a bit afraid of using something I don't understand. Menage controller has almost 400 rows, there are also some models that you didn't even open here. I understand that in this video with your speed it wouldn't be too good to speak about it because it would be too long, but I would really be glad if you could make 2nd part of this with more details. The most important thing for me right now is how to work with outside database. I'm not sure how to link my database in Web.config. I have found how to add my outside database to SQL Server Object Explorer and how to find its Connection string but even for the default database connection string here is different than the one used in Web.config and only first part (Data Source) is the same. I'm interested in this topic and will wait for more about it. Also I will subscribe you to not miss it.
@IAmTimCorey
@IAmTimCorey 6 лет назад
I have two videos that might help you. First, I have a Connection Strings video that gives you a good overview of how to set up a connection string and where to find what yours is. Second, I have a video on Connecting C# to SQL. That will show you how to configure your web.config/app.config file so that you can connect to an external database. As for showing more details about the authentication side, I will be doing that in future videos, although I'm not sure I'll ever go line by line. Some of this is EF Code First and I really don't want to get into that whole issue. As far as setting up your own database to do the authentication, if you point your connection string to the right database, the first time the app runs it will set up the proper tables. I would recommend that you not mix databases though. Keep a separate database for your authentication vs. your other data. It is much easier to secure that way. You can still have them on the same server though.
@jayjoe1725
@jayjoe1725 5 лет назад
Thanks for making these tutorials! Fantastic content
@IAmTimCorey
@IAmTimCorey 5 лет назад
You are welcome.
@louiseeggleton7420
@louiseeggleton7420 6 лет назад
Great series of videos. One thing I like to do is put my Authorize attributes in a base controller and inherit from it so that I am not having to put Authorize everywhere, and I don't run the risk of forgetting to put Authorize on some controllers. Some might argue that I could also forget to inherit from the base controller, but in my case, the base controller does a few other things that are essential to my app, so I wouldn't get very far without inheriting from the base controller.
@IAmTimCorey
@IAmTimCorey 6 лет назад
Good tip. Then, if you need to have something not protected, you add the AllowAnonymous tag instead. Essentially, your application is secure by default. I like it. Thanks for sharing.
@blackdog3113
@blackdog3113 2 года назад
Hi Tim, thanks for the wonderful tutorial! I am new to authorization and bit confused as to use third party tools like Auth0, IdentityServer5 , okta vs the Identity Framework provided by Microsoft. Is the Microsoft Identity really that unsecure as people on the internet say? All the third party auth tools are black box and have not so good documentation, where as identity is easy to setup.
@shuhoodrahmani8201
@shuhoodrahmani8201 Год назад
Please can you provide a short video in regarding of adding authentication and authorization to an application created previously. when I do so, it doesn't work. thanks
@IAmTimCorey
@IAmTimCorey Год назад
Thanks for the suggestion. Please add it to the list on the suggestion site so others can vote on it as well: suggestions.iamtimcorey.com/
@JackWatling
@JackWatling 6 лет назад
Great video. One thing to add - if you stack the Authorize declarations on a function/controller you can require the user to have all of the roles specified (AND), rather than just one OR more of them. There's an example here: docs.microsoft.com/en-us/aspnet/core/security/authorization/roles
@IAmTimCorey
@IAmTimCorey 6 лет назад
Good tip. Thanks!
@chineduokolie7377
@chineduokolie7377 2 года назад
Hi Tim. New to authentication and I followed the tutorial, however I still get the "The remote certificate is invalid according to the validation procedure" error.
@IAmTimCorey
@IAmTimCorey 2 года назад
It sounds like you have a problem with your developer certificate. Try this answer: stackoverflow.com/a/58957501/733798
@Fasiibcs
@Fasiibcs 6 лет назад
Hey Tim, I saw couple of your videos and you doing awesome job. How ever, I'm just curious you said in this video you are not a big fan of entity framework. So what you suggest in alternate?
@IAmTimCorey
@IAmTimCorey 6 лет назад
I suggest Dapper. Much easier to use, much simpler, and it does not interfere with good database design. You can see more about it in my video here: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-Et2khGnrIqc.html
@harag9
@harag9 6 лет назад
I agree with Tim now, I used EF a while ago and hated it, I find Dapper much easier now (after I saw it on one of Tims Videos) - Thanks Tim.
@sengar31
@sengar31 6 лет назад
Nicely explained... Please make a video on other functionalities of identity, e.g email verification before login, reset password, forgot password, Two-Factor Auth. Thanks a lot for providing such great contents.
@IAmTimCorey
@IAmTimCorey 6 лет назад
It is on the list. Thanks for the suggestions.
@InimitableMrG
@InimitableMrG 5 лет назад
RequireNonLetterOrDigit means Require Non(letter or Digit) or require something other than an alphanumeric character (So, a special character).
@IAmTimCorey
@IAmTimCorey 5 лет назад
Yep, you are right. Drew a blank when looking at it.
@SyrgakZhylkybaev
@SyrgakZhylkybaev 6 лет назад
Thank you. I like your videos. Keep posting please
@IAmTimCorey
@IAmTimCorey 6 лет назад
Will do.
@kittytechnologies9359
@kittytechnologies9359 6 лет назад
Great video. Can expand it include user and role management via a webpage.
@IAmTimCorey
@IAmTimCorey 6 лет назад
I'll be covering this in future videos. Thanks for the suggestion.
@Ocura89
@Ocura89 6 лет назад
I'd like to see that too!
@itworks5980
@itworks5980 3 года назад
This is very helpful. Can you please create a video for allowing users to register using localdb but requires admin approval before they can start logging in? Thanks!
@IAmTimCorey
@IAmTimCorey 3 года назад
I will add it to the list. Thanks for the suggestion.
@itworks5980
@itworks5980 3 года назад
@@IAmTimCorey You're the best!
@adamschneider868
@adamschneider868 3 года назад
*** FIXED READ BELOW *** I did everything described in this video in regards to Twitter. I keep getting 403. Response status code does not indicate success: 403 (Forbidden). Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.Net.Http.HttpRequestException: Response status code does not indicate success: 403 (Forbidden). However, with the new signup procedure for a Twitter Developer account, I had to assign a URL for my website and an organization URL. I don't think this is the issue, but worth noting. I used the URL to my twitter profile for these values. I tried adding more callback urls 127.0.0.1 localhost:44306/Account localhost:44306/Account/ExternalLogin localhost:44306 That didn't seem to work either. Am I missing something? Is there an extra step in 2020 that I am missing? ***FIXED*** append "/signin-twitter" to your callback URL. In my case localhost:44306/signin-twitter. Now it works. Whew. ************
@IAmTimCorey
@IAmTimCorey 3 года назад
Glad you figured it out.
@jassisidhu7750
@jassisidhu7750 5 лет назад
Hi Tim,Thanks for this video,however i am just curious to know how [Authorize] works behind the scene.How it gets to know the user details and token and authorize the user.. It would really be helpful if you could provide me any pointers .
@IAmTimCorey
@IAmTimCorey 5 лет назад
It uses the header token and converts that over to identify the user. From there, it figures out if you have access privileges or not.
@martinvaughan4197
@martinvaughan4197 3 года назад
@@IAmTimCorey Have you covered this in any videos? Would be very useful to get more insight into how asp.identity works!
@bridgefour4448
@bridgefour4448 6 лет назад
Sorry for the multiple questions, but I have some gaps I can't fill. I've always built my sql tables on a server first, then coded my application, so I am apprehensive about building on localdb...every tutorial regarding identity I have come across starts with tables on localdb and assumes we magically know how to move it to production at some future point. My process before (I have never implemented authentication) has always been to first get database on a real server, build tables there, go back to my app , set up helpers, a dataaccess class and connection string, build model, build controller, build views...in that order. If I miss something I go back to sql build the table, then go back to the app, rinse and repeat. Now, I am thinking of starting a new db on azure and want to implement identity. If I were to follow this method of implementing identity locally first, what do I need to do to get the all my tables (including the other ones I add to the db) in the server instead of localdb, assuming I coded the whole thing locally first instead as in the demo. Is it possible to change the connection string before installing the owin nuget package and running the package in order to sidestep all that so I can continue working the way I have before (ie the table structure for identity stuff would just be created in the production server instead of localdb)? Or is there some easy button for moving that all into a production server after you have coded your entire project locally?
@IAmTimCorey
@IAmTimCorey 6 лет назад
I decided to answer your question here: iamtimcorey.com/ask-tim-database-authentication-setup/ I hope that helps.
@bridgefour4448
@bridgefour4448 6 лет назад
It does! Thanks much! I also appreciate the clear and distinct instructions your videos usually include. I do a lot of research and find your videos the easiest to understand, the most comprehensive, and have lead to a lot more ah-ha moments for me. I think I would still be scratching my head on a lot of ideas if it weren't for your channel.
@emirhancelebi8316
@emirhancelebi8316 5 лет назад
I wish someone to explain Authentication middleware in detail. What is Authenticaion Type? How does it work regarding cookie based authentication ?
@IAmTimCorey
@IAmTimCorey 5 лет назад
Sounds like a good in-depth video. I'll add it to the suggestion list.
@emirhancelebi8316
@emirhancelebi8316 5 лет назад
@@IAmTimCoreyThanks for your attention Tim. I'd be so thankfull to you if you take your time to pick up on it. I have really had a hard times to understand how this middleware and its properties behave after each request.
@veoquenoesunproblema
@veoquenoesunproblema 3 года назад
Extremely well explained. Very top level as Indian Eng. haha who save my butt more than once.
@IAmTimCorey
@IAmTimCorey 3 года назад
Thanks!
@webdistortion
@webdistortion 6 лет назад
Hi Tim, this is great. Would love to see an example of impersonation following on from this video. i.e. login as an admin (with admin roles) and then impersonate a user already registered in the system to see their data. Or indeed any pointers on which classes etc. to read around to do this.
@IAmTimCorey
@IAmTimCorey 6 лет назад
Thanks for the suggestion.
@shreyashpawar5959
@shreyashpawar5959 2 года назад
Hi Tim, I tried entering Authorization as you did by editing the database, but I am not able to get access for specific roles even after repeating the same procedure. Access Denied page is popping.
@IAmTimCorey
@IAmTimCorey 2 года назад
It sounds like you missed a step or maybe mistyped something.
@Biagio999999999
@Biagio999999999 4 года назад
Hi Tim! Love your tuts. Will you ever do something about Auth, without Microsoft Identity Framework? I would love to build my auth without any pre-scaffolded code. Thanks!
@IAmTimCorey
@IAmTimCorey 4 года назад
It is on the suggestion list.
@Wesleyvd1991
@Wesleyvd1991 5 лет назад
Learned alot from this thanks !
@IAmTimCorey
@IAmTimCorey 5 лет назад
Excellent!
@BrianEHo
@BrianEHo 4 года назад
Hi Tim, thank you for sharing your videos to public. I learn a lot from your videos. Do you have any video talks about OAuth 2.0 in Visual Studio?
@IAmTimCorey
@IAmTimCorey 4 года назад
I have content using the .NET Core authorization but not external OAuth.
@personkiller19960
@personkiller19960 6 лет назад
Thank you so much. Comprehensive content. Liked, subbed and belled.
@IAmTimCorey
@IAmTimCorey 6 лет назад
Excellent! I'm glad you enjoy the content.
@attilaguba856
@attilaguba856 2 года назад
It's really good explanation, I like when you showed the Role based authentication as well. Do you have a complex tutorial how I can implement with all Identity Register and Login , Forgot and Reset password and =>/ Facebook, Gmail etc / to an existing website with publishing too!?
@IAmTimCorey
@IAmTimCorey 2 года назад
I don’t. Sorry.
@salehawad9488
@salehawad9488 4 года назад
Hi Tim , thanks very much for a useful video
@IAmTimCorey
@IAmTimCorey 4 года назад
You are welcome.
@ardenyoung6554
@ardenyoung6554 4 года назад
Excellent video and very timely for me. I do have a question. You mention that the local database is not the preferred storage for account data. What is involved in moving to a MySQL database for the account storage information rather than the local SQL database?
@IAmTimCorey
@IAmTimCorey 4 года назад
It would be easier to just move your SQL database to a "full" SQL Server (or Azure SQL) but here are instructions on using MySQL: docs.microsoft.com/en-us/aspnet/identity/overview/getting-started/aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider
@ronaldjohnson4470
@ronaldjohnson4470 4 года назад
Thank you Tim, excellent tutorial.
@IAmTimCorey
@IAmTimCorey 4 года назад
You are welcome.
@kombokenedy4750
@kombokenedy4750 6 лет назад
Tims your works alwalys kills me .
@IAmTimCorey
@IAmTimCorey 6 лет назад
Hopefully in a good way. :-)
@Grokfyr
@Grokfyr 6 лет назад
If you are the kind of person that say "OMG, it got much stuff installed, i need to remove it all", programming is properly not your thing :D - 9:10
@IAmTimCorey
@IAmTimCorey 6 лет назад
Well, the unfortunate part is that some "teachers" tell users that if they see a lot of plug-ins, etc. then something is wrong and they need to stop doing that. It is an over-correction for users who get a plug-in for everything instead of writing any code. The key is context. If you have that many plug-ins because you forgot to code, yes, try to remove them and start over. However, if you have no plug-ins and try to do everything manually yourself, that will take too much time and negates one of the big benefits of programming. Instead, you need to know what your balance is and hit it.
@SnitchShow
@SnitchShow 6 лет назад
All what i can say is, this is a great tutorials and thank you for It:)
@IAmTimCorey
@IAmTimCorey 6 лет назад
I'm glad. Thanks!
@boyanpetrov4628
@boyanpetrov4628 4 года назад
Ugh I spent 2 hours searching and replacing my callback Url but I just can't get it right. I keep getting the 403 Error. ***EDIT: fixed it by adding: localhost:44388/signin-twitter Amazing content as always Tim, Thank you!
@IAmTimCorey
@IAmTimCorey 4 года назад
I am glad you figured it out.
@jeremyolu3025
@jeremyolu3025 2 года назад
Hi Tim - i noticed the scaffolding code produces a lot of excess code which a develop may not use. Is there a way of modifying this, like deleting excess code, changing table names, adding extra columns etc to make it more specific to a business case?
@IAmTimCorey
@IAmTimCorey 2 года назад
I don’t believe so. You can tweak some of it, but most is necessary.
@jeztafari5372
@jeztafari5372 Год назад
Trying to follow this with the new project template in Visual Studio 2019 and the Register and Login pages blow up with a Null Ref Exception on the model straight outta the box!
@Babaelow
@Babaelow 2 года назад
Also to say: If you store the password in a database, always HASH it (like SHA), never just ENCRYPT it (like, say, with AES). There is a BIG difference. There is a difference if an administrator is able to RESET your password, or if he is able to SEE it. He should NEVER be able to see it. If it's just encrypted, and he knows the key, he can read it. If it's hashed, no chance for anybody.
@IAmTimCorey
@IAmTimCorey 2 года назад
There is a lot that goes into making authentication secure.
@Babaelow
@Babaelow 2 года назад
@@IAmTimCorey You're right. I have to correct myself: Hashing is not enough. You need to "salt" it as well. I watched a video "How to not store passwords". After that, I knew more.
@smithmsiska6150
@smithmsiska6150 2 года назад
@@IAmTimCorey could you make a video on single sign on with aspnet core?
@josephquesada94
@josephquesada94 5 лет назад
Thank you so much!! You explained it amazing
@IAmTimCorey
@IAmTimCorey 5 лет назад
You are welcome.
@uwebraun8893
@uwebraun8893 4 года назад
Interesting I find the Role-Management. I have to do some research, if you always need to specify the Roles by a String "User, Admin". It would be much easier, if it could be done with the UserID, because then you can easier group them, like saying Access to RoleID > 2... But I guess that is also possible somehow. Anyway, thanks for the very clear tutorial.
@IAmTimCorey
@IAmTimCorey 4 года назад
You can assign permissions to a user, not just to a role, but that is too specific and hard-coded to be very useful. You can't apply conditional logic to the role decorators (without dropping the check into the code), so >2 wouldn't really work well.
@paulchisholm66
@paulchisholm66 3 года назад
Thank you Tim: A couple of questions. Is it possible to capture additional user data in the EF authentication process such as first name, last name, employee ID number, etc? (Would it be easy / possible to modify parts of the system to hold additional data for example such as the items mentioned above? If I understand this correctly, we are fine to develop this using the local SQL server and then when it is ready to be deployed, one can just say change the connection string to point to a SQL Azure database (for example) and the local database will be recreated in the cloud? Finally, if you want to manage the creation of the user accounts and not let people just come to the site and Register, could you create part of your app that would allow an admin user to create new accounts? (i.e. I get the feeling that you strongly recommend using this authentication system as opposed to building your own and storing the username and password data in a database. Thank you so much for your time and all of the videos that you do, they are wonderful!
@lyejiajun
@lyejiajun 4 года назад
Hey Tim! Thank you for the great video. I really appreciate the explanation as most people do not explain in such tutorials. However, just my personal opinion - I feel like while it is great to re-iterate on a point a few times to place a strong emphasis on a concept, you tend to repeat yourself a little too often. I believe most users would appreciate it if you repeat just once or twice less than you already did to make the video more concise! I hope this feedback is useful to you and thank you once again!
@IAmTimCorey
@IAmTimCorey 4 года назад
I appreciate the kind feedback. I do work on the balance of repetition. I want to repeat for emphasis enough to show the importance and give clarity but not enough to be annoying. I also try to come at the same point from multiple directions for added clarity. I know I don't always get it right but I'm working on it.
@adrianv.1636
@adrianv.1636 4 года назад
@@IAmTimCorey keep repeating Tim! We need it to learn! Thank you mate.
@Greatfulone
@Greatfulone 3 года назад
Thank you so much. I feel I learned so much, and I even fixed a few things on my website based on what you covered here. I was under Bootstrap 4, and was wondering how to change the button look. It was so small. I read the Oath RFC a number of times, and like you said it does a lot. I am trying to map the functional components between the rfc and the video. Twitter would be the authentication server, the client and the user agent would be our application I guess. The rfc was talking about one scenario where the client asks the user to authenticate with the server so then the client can get some services from yet another server. Is it possible to create a tutorial for something like this please? I definitely followed what you covered here, and it helped me a lot with understanding of the RFC, but I want to be sure. I know understanding the RFC is job of pros, but I got to try. I also tried to refactor my existing ASP.NET project to enable Oauth and could not find a way yet. I wonder if that is possible or I should just start from the beginning.
@vivekverma30494
@vivekverma30494 4 года назад
I understand adding authentication while creating a new project. But how do we add authentication to an existing ASP.NET MVC 5 project? I can't find any resource for it.
@IAmTimCorey
@IAmTimCorey 4 года назад
You have to manually do it. Create a new project with authentication and then copy the settings and files over.
@djangounchained7314
@djangounchained7314 4 года назад
Hey Tim! Twitter doesn't allow to use localhost anymore to create an App, how do we solve this?
@djangounchained7314
@djangounchained7314 4 года назад
Twitter doesn't allow 127/0.0.1 either ... what to do?
@IAmTimCorey
@IAmTimCorey 4 года назад
I believe it is because you need https but check the documentation.
@pankajroy6979
@pankajroy6979 2 года назад
Thank u for great Tutorial
@IAmTimCorey
@IAmTimCorey 2 года назад
You are welcome.
@cdouillet
@cdouillet 4 года назад
Hi Tim, This is a really great video! Thanks for that. Quick question, I've followed your steps, using local authentication only. If I run my VS project, register and/or login, stop the VS project and then run it again, then I am still logged in. I need to run some code just after successfull authentication. Clearly this shouldn't be done in public async Task Login(LoginViewModel model, string returnUrl) since this only runs when the user clicks on the Login button. Where should post authentication code be run ? Thanks again for your work, helps tremendously!
@IAmTimCorey
@IAmTimCorey 4 года назад
Good question. You might find success running it on the homepage, since the user will hit that first (check if they are authenticated). The only problem is if the user is not logged in and attempts to go to a secured page. When they log in, it will direct them to the page they attempted to go to instead of the homepage. So if you can do it in two places, the homepage and the login would be the two places to do it.
@stewiefre
@stewiefre 3 года назад
How do we can edit user profile using this system?
@dhivakharvenkatachalam7759
@dhivakharvenkatachalam7759 4 года назад
Is there any video or article explaining every step of the logging process such as register, change password , log out for identity authentication in MVC 5?
@IAmTimCorey
@IAmTimCorey 4 года назад
We use the Identity process for logging in and out (and registering) in the TimCo Retail Manager.
@rededu5356
@rededu5356 2 года назад
Good day sir, what alternative do you use for your database access? Thank you and more power to you.God bless
@IAmTimCorey
@IAmTimCorey 2 года назад
Not sure what you mean. I use Dapper with SQL, I use MongoDB, I use CosmosDB, I use Redis - basically, I use whatever database solution is best for the situation.
@MegasXLR
@MegasXLR 5 лет назад
"I'm not sure why I'm a 'We' today" XD
@IAmTimCorey
@IAmTimCorey 5 лет назад
Every once in a while my royalty slips out.
@embossCoder
@embossCoder 4 года назад
Thank You. Really Help me to learn
@IAmTimCorey
@IAmTimCorey 4 года назад
Glad to hear that
@harag9
@harag9 6 лет назад
Again, Excellent video, thanks - I was going to ask about roles (e.g. Gold, Silver, Bronze membership) but you covered this at the end. :) Quick question on the Twitter App ID/Secret keys - I know you covered them up, which is good - but if you delete the app from twitter after creating the video, would these ID/Keys be valid still ? If not, then does it really matter to blur them out ? - No I'm not after your information, just curious on how secure it would be... unless you forgot to remove the app from twitter of course.
@IAmTimCorey
@IAmTimCorey 6 лет назад
In theory they should be fine. In practice, it might tell you more about my account than I would prefer. I decided to err on the side of caution. I could also request that they be reset and I wouldn't even have to delete my app for them to be invalid. It was just the abundance of caution.
@harag9
@harag9 6 лет назад
OK, thanks for that - I wasn't sure as I don't even have a twitter or facebook account. On the Roles, you assigned the roles to the users manually by editing the database, I take it there is function to do this in the code? Could you do a quick video on how we would assign roles to users when they (a, create an account, b, pay for a better membership (gold, silver, bronze roles).
@IAmTimCorey
@IAmTimCorey 6 лет назад
I'll see what I can do. You have to make your own UI for it.
@gaatutube
@gaatutube 4 года назад
Twitter authentication does not seem to work in this manner any more. Swapped in the solution from stackoverflow post that you showed. Plugged in my key/secret ... tried with both "get user email" checked and unchecked methods ... all of them seem to give a 403 error the moment I hit the "Twitter" button on the login page. Exception Details: System.Net.Http.HttpRequestException: Response status code does not indicate success: 403 (Forbidden). Looking through inspect Network tab shows that request goes to localhost:44395/Account/ExternalLogin and gets back a status of 500 (even though it gets back content showing 403 error). No request is ever sent to Twitter.
@IAmTimCorey
@IAmTimCorey 4 года назад
Yeah, Twitter has changed some things. There are some suggestions in the comments section about things to try that might help you out.
@colin-campbell
@colin-campbell 4 года назад
The password hashing part at 27:57 - It doesn't appear as if the passwords are being salted prior to hash, do you reckon this would be easy enough to implement? For instance, adding in a "salt" column in the Users table and when a user registers, a cryptographically secure RNG value is created for that user which is then stored within the new column. The trick would be finding where, in the C# backend code, the passwords are being hashed.
@IAmTimCorey
@IAmTimCorey 4 года назад
You could do that. My big thing is that when I start messing with authentication code, I have the potential to make it worse. This has been tested by Microsoft and a LOT of other companies. My custom changes have not. I get concerned when we start talking about overriding parts, since that means I really need to know the system intimately in order to ensure I do it right.
@colin-campbell
@colin-campbell 4 года назад
@@IAmTimCorey Ah that's a really good point, if I were to implement a salting system, I'd need to conduct some really thorough testing to make sure I wasn't making the system insecure. I'm just really worried about rainbow table attacks against an application I'm developing. Many thanks for the reply!
@ceksing
@ceksing 5 лет назад
Hi Tim - Great Introduction
@IAmTimCorey
@IAmTimCorey 5 лет назад
Thank you!
@alimakhmali5088
@alimakhmali5088 5 лет назад
Great work. I am preparing for Microsoft 70-486 exam. Any hints on what videos are must-watch? And books perhaps? Thanks.
@IAmTimCorey
@IAmTimCorey 5 лет назад
I don't have any exam-focused content but anything I've done with MVC will help. I do have an add-on course that uses ASP.NET MVC at www.iamtimcorey.com that might help you out. It is an add-on to the main C# Application from Start to Finish course, though, so the add-on only covers MVC, not the business logic or data access since they are already covered in the previous course.
@amolkolekar4194
@amolkolekar4194 3 года назад
Excellent video Tim, but I have query, all this stuff is inbuilt projects code provided by Microsoft. What if I want to use my own tables like Users, Roles etc. What kind of changes need to be done? e.g. In a code you have shown Authorize(Role=Admin) what if I want to use my own roles from my own role table? Do I have to create my own Authorize attribute for the same?
@Zisi911
@Zisi911 3 года назад
Hi Tim, awesome video as usual. I've learned a huge deal from you in my steps to become a software dev already working on my own project now. In this one however i have a problem and i cant get the twitter login to work no matter what.I have added the code and even found some other Digicert keys as in some forums they were saying the one in this video have expired, but still i cant get it to work getting always the same error with the secure connection. Any ideas? Have they changed anything, is there a place to find the current keys?
@davidemmanuel3001
@davidemmanuel3001 4 года назад
God bless you tim! we love you
@IAmTimCorey
@IAmTimCorey 4 года назад
Thank you!
@ambroselangat5067
@ambroselangat5067 6 лет назад
Hello Tim. Great works there! Questions (1) Is it possible to to change the database name? How do we do it? (2) How do we create ASP.Net identity database in SQL Server? Thanks
@IAmTimCorey
@IAmTimCorey 6 лет назад
Good question. To change the database name, just change the connection string. If it is a LocalDB, it will create that new database. If it is a SQL database, it will look for that new database but crash if it does not exist yet. As for creating the ASP.NET Identity database in SQL Server, the easiest way is to create an empty database in SQL and point the connection string in C# to it. Then run the application and try to register an account. It will see that the tables do not exist and it will create them.
@ambroselangat5067
@ambroselangat5067 6 лет назад
Thank you.
@yogeshvaidya5895
@yogeshvaidya5895 5 лет назад
its too long but very useful and informative tutorial ,yo did just simply grate works , i request you to give email verification tutorial , thanks
@IAmTimCorey
@IAmTimCorey 5 лет назад
Thanks for the suggestion.
@AbubakrMahdiSan
@AbubakrMahdiSan 4 года назад
Thanks , i love you Tim.
@IAmTimCorey
@IAmTimCorey 4 года назад
You are welcome.
@hqcart1
@hqcart1 5 лет назад
Hello tim, Awesome tutorial, Thank you. I have a question about cookies and how to set its expiration date?
@IAmTimCorey
@IAmTimCorey 5 лет назад
I believe this should help: stackoverflow.com/questions/33701398/oauth2-webapi-token-expiration
@KingKhan-oi2wu
@KingKhan-oi2wu Год назад
Thank you very much Lovely❤️
@IAmTimCorey
@IAmTimCorey Год назад
You are welcome.
@arturoordonez-hernandez1534
@arturoordonez-hernandez1534 4 года назад
I think I've got a good handle on this locally. How do you change the Database connection for this so it adds these tables to a database on a hosting server?
@IAmTimCorey
@IAmTimCorey 4 года назад
You just change the web.config file's connection string, which you can do even at runtime. However, usually what you do is when you deploy it, you transform the deployed web.config file to have the correct connection string.
@arturoordonez-hernandez1534
@arturoordonez-hernandez1534 4 года назад
@@IAmTimCorey I managed to get this working on my Go Daddy server; not sure why it wasn't working before. Thanks!
@Sclunger
@Sclunger 4 года назад
Hi Tim, great video. I am working on setting up external login with ASP.NET Core 2.2 without using identity. Do you remember if you have made a video for that before? Thanks
@IAmTimCorey
@IAmTimCorey 4 года назад
I don't have a video like that. Sorry.
@mmuneebajaz
@mmuneebajaz 5 лет назад
hi please add 2factor method to your list too ,that would be helpful
@IAmTimCorey
@IAmTimCorey 5 лет назад
I'll see what I can do. Thanks for the suggestion.
@arananeyie1584
@arananeyie1584 5 лет назад
Hi @IAmTimCorey, I notice that once we get into twitter signup page, it asks us to have/create a developer account? Did you have to do that too or is this a new step that Twitter has just created since your video was published early this year. Thanks.
@IAmTimCorey
@IAmTimCorey 5 лет назад
Not sure but if Twitter says you have to do it, go for it. It is probably just a conversion of your existing account to allow for more features.
@marcinosiadacz7391
@marcinosiadacz7391 3 года назад
Hello Tim, thanks for the video! Could you please advise how can I configure the default user role to be assigned for new users automatically after registration?
@santiagopiaggio2099
@santiagopiaggio2099 4 года назад
Hi tim! Thanks for the video. I followed this tutorial on a .net framework project, as i upgraded it to .net core 3.0, everything works fine, but i couldn't upgrade this to the project. Mycrosoft suggests this : services.AddAuthentication().AddTwitter(twitterOptions => { twitterOptions.ConsumerKey = "..."; twitterOptions.ConsumerSecret = "=..."; }); Doesn't seem to work for me. Do you have any ideas why? -> Error suggest -> "AuthenticationBuilder does not contain a definition for AddTwitter ... "
@IAmTimCorey
@IAmTimCorey 4 года назад
It sounds like you need a NuGet package to support Twitter authentication.
@engrinchik884
@engrinchik884 3 года назад
Did you manually create the database tables for the user accounts (AspNetRoles, AspNetUsers, etc.) ?
@bharatsahlot223
@bharatsahlot223 3 года назад
Hey tim, do you have a video/resource which goes into more depth about auth ? Thanks for the great video. Really helpful.
@IAmTimCorey
@IAmTimCorey 3 года назад
I don't. Added it to my list.
@joebeauchamp9238
@joebeauchamp9238 5 лет назад
Tim, would it be possible to use Dapper to connect to SQL Azure in this scenario? I assume it would be possible, just wondering if it would be a good way to go. Any Dapper related videos planned?
@IAmTimCorey
@IAmTimCorey 5 лет назад
Yes, Dapper can connect to SQL Azure. You just need to change the connection string. Everything else is the same compared to on-premises SQL. As for more Dapper videos, yep, they are coming.
@AndresHohendahl
@AndresHohendahl 3 года назад
Is there a simple way to specify to the template or just transform it into a non-MS-SQL-Server server database like MySQL or Amazon AWS Dynamo/María all the databases (at least get the instructions to build them) if not I need manually to change the provider, and create all the databases, this is cumbersome and may fail easily...
@shuhoodrahmani8201
@shuhoodrahmani8201 2 года назад
Plz make a video to print report in pdf format in asp.net mvc5 application. I hope you create as soon as possible. Thanks
@IAmTimCorey
@IAmTimCorey 2 года назад
Is that this suggestion? suggestions.iamtimcorey.com/Details/6231b93a407ff5560a669212 If not, I would recommend adding your own to the list.
@Deekudla
@Deekudla Год назад
great video. But i saw its 5 years old. Is anything changed after that? If yes, did you create followup videos for your fans?
@IAmTimCorey
@IAmTimCorey Год назад
This is the same still for .NET Framework. For .NET Core (.NET), things have changed a little bit. The TimCo Retail Manager course covers those changes.
@john_yeager
@john_yeager 2 года назад
anybody know example how dapper and identity can live together? because identity use entity framework, do i need to have different connection strings?
@IAmTimCorey
@IAmTimCorey 2 года назад
They can, although I recommend using separate databases. You can see an example of this in the TimCo Retail Manager application here on this channel. If you use one connection string, you need to take care not to create a conflict with the EF updates. Plus, you are mixing your data types. I prefer to keep my security data away from my "regular" data. It makes for easier security.
@john_yeager
@john_yeager 2 года назад
@@IAmTimCorey thanks man was very helpful
@santhoshn3766
@santhoshn3766 4 года назад
Awesome video, Thank you! Subscribed ..
@IAmTimCorey
@IAmTimCorey 4 года назад
You are most welcome. Thanks for watching.
@behdadnemati7815
@behdadnemati7815 4 года назад
Sir please make a video for Identity in ASP.NET Core I spent alot of time trying to tweak identity in ASP.NET Core and since you can't access the controllers for identity in asp core I ended up implementing the controllers again myself so I'd be able to customize identity If there's an easier way please make a video and explain it. I love your channel and thanks for making C# easy to understand and learn for us.
@IAmTimCorey
@IAmTimCorey 4 года назад
I will add it to the list. Thanks for the suggestion.
@MukeshPiparotar
@MukeshPiparotar 3 года назад
Is this same possible without entity freamwork what we seen In the demo And thank for the demo video
Далее
Intro to Bootstrap in ASP.NET MVC
1:18:47
Просмотров 132 тыс.
Construction site video BEST.99
01:00
Просмотров 345 тыс.
React and ASP.NET Core Identity Authentication
32:16
Просмотров 13 тыс.
The Logging Everyone Should Be Using in .NET
15:34
Просмотров 59 тыс.
Brutally honest advice for new .NET Web Developers
7:19
Don't Use Polly in .NET Directly. Use this instead!
14:58
OAuth 2.0 and OpenID Connect (in plain English)
1:02:17
I forced EVERYONE to use Linux
22:59
Просмотров 414 тыс.