Part 2 : Token Based Authentication Using ASP.NET Web API in AngularJS

  Рет қаралды 54,571

sourav mondal

sourav mondal

Күн бұрын

Пікірлер
@ninjaprakash2045
@ninjaprakash2045 5 жыл бұрын
I am new to .net and token based authentication. Your Part 1 video is really helpful. Thanks for your wonderful video, Keep doing.
@lg24det
@lg24det 7 жыл бұрын
Can't say enough thank you for these well explained tutorials. God Bless you my friend!
@carlhlazo931
@carlhlazo931 7 жыл бұрын
Thank you so much Sourav. I enjoyed your well thought out step by step tutorial. Keep up the great work
@diegocrdev
@diegocrdev 8 жыл бұрын
Thanks for the very nice tutorial. I just have 1 question. What about the logout? Is there any way for manually expiring the token?
@muhammadfaizan933
@muhammadfaizan933 7 жыл бұрын
Hi i seen your first video of web api where you used token based authentication.but can you explain or send me video where you are storing all this roles and tokens and users in sql server database with web api. thanks
@bl8nc
@bl8nc 5 жыл бұрын
Good job, thanks for sharing. Love the background noises btw, makes it far more interesting :D
@chaitanya121
@chaitanya121 8 жыл бұрын
The post is really very good. Very helpfull.
@tejeshB19
@tejeshB19 7 жыл бұрын
Thanks a lot bro.. its a great tutorial... please continue the great work.
@muhammadfaizan933
@muhammadfaizan933 7 жыл бұрын
I like your first video very much and it was very helpfull.but just next part of database was not included
@shimpipravin82
@shimpipravin82 7 жыл бұрын
Superb..!! Really, it helps lot to clear the doubts. Thanks once again..!!
@souravmondal45
@souravmondal45 7 жыл бұрын
Thanks
@aasimsajjad8606
@aasimsajjad8606 8 жыл бұрын
You are rock man thankx for the awesome tutorials
@VongsiLoryongpao
@VongsiLoryongpao 6 жыл бұрын
Good one, thanks for sharing and appreciated.
@CarminasVix
@CarminasVix 7 жыл бұрын
Thank you for this tutorial. I have a suggestion: you could show in bug how is the backend behavior in each situation.
@dduurrggaa1115
@dduurrggaa1115 8 жыл бұрын
Thanks Sourav, It's good one.
@supriyakaturu3220
@supriyakaturu3220 4 жыл бұрын
The post is very good and helpfull this
@sumamasham6936
@sumamasham6936 4 жыл бұрын
I did to your previous project upto token generation in postman Can you explain how to use it in mvc client project instead of angular json
@hsaeed01
@hsaeed01 7 жыл бұрын
Arent you supposed to use Implicit flow for Angular apps? Also doesnt password flow require client id and secret and is supposed to be for server side?
@MdArefinReflex
@MdArefinReflex 7 жыл бұрын
its ok ...brief and nice,,, but if possible share the JWT grant type, more convenient for mobile development as well as web.
@allisfun3216
@allisfun3216 8 жыл бұрын
Hey Mr. Sourav mondal, its really very nice tutorial.. But I need your help, to how to regenerate token if its expired. Thanks in advance.
@rakeshkaddi
@rakeshkaddi 8 жыл бұрын
Can you Please work on a module where admin approval is need for user registration.
@davidflash1
@davidflash1 6 жыл бұрын
do you have with database connection?
@pochtaliot
@pochtaliot 7 жыл бұрын
Hi! Thanks for the tutorial! All works fine. Have some issue. When i open my app it has no saved token and id need to login one more time. Is this correct by this way building current app?
@souravmondal45
@souravmondal45 7 жыл бұрын
2 type of token you can create, persistence and non-persistence. you can create persistence cookies for saved token even after browser closed.
@pochtaliot
@pochtaliot 7 жыл бұрын
Ok, thanks, thought about cookie option
@MatriX606023
@MatriX606023 7 жыл бұрын
Where do you store Token on client side?
@senthilprabhu2340
@senthilprabhu2340 8 жыл бұрын
Hi nice videos session about token based application n angular JS. I tried to developing in MVC 5 in same concept but i cant reach out.can u help me in MVC or else any videos using token based application with MVC.
@botizanionut2242
@botizanionut2242 8 жыл бұрын
Should be even easier in MVC , same project ... With no CORS Just write his Index . html in your Index View
@RongMilon
@RongMilon 8 жыл бұрын
Good job....
@mdaslamknl
@mdaslamknl 7 жыл бұрын
hello when displaying writing the code zoom it
@BePositive863
@BePositive863 8 жыл бұрын
i am getting this error "Error: [$injector:modulerr] Failed to instantiate module myApp due to: [ng:areq] Argument 'fn' is not a function" , could you please help?
@BePositive863
@BePositive863 8 жыл бұрын
i am done
@JosephR9
@JosephR9 7 жыл бұрын
can you update to Angular 2, 4? plox
@MdArefinReflex
@MdArefinReflex 7 жыл бұрын
it will be same as angular...
@shahidwani6445
@shahidwani6445 7 жыл бұрын
Sir how to validate client application
@РазработчикАдильханов
@РазработчикАдильханов 8 жыл бұрын
Thank you very much!
@timcesar1
@timcesar1 7 жыл бұрын
what about Refresh Token
@tobiashoft3505
@tobiashoft3505 8 жыл бұрын
What is when token expired? what can i do?
@souravmondal45
@souravmondal45 8 жыл бұрын
It will automatically redirect you to login page. You can see I have written the following line in the Http Interceptor responseError : function(rejection) { if (rejection.status === 401) { $location.path('/login'); return $q.reject(rejection); } if (rejection.status === 403) { $location.path('/unauthorized'); return $q.reject(rejection); } return $q.reject(rejection); } Here when the token will expire, we will get 401 status code. And we have written code $location.path('/login'); when we will get 401.
@shimozurdo
@shimozurdo 8 жыл бұрын
genius!
@akumok
@akumok 7 жыл бұрын
Sir, Do you realize your title "Part 2..." overlapping on your screen code you're typing so it making very difficult to read it?
@divyeshvaghela5467
@divyeshvaghela5467 6 жыл бұрын
Thanks.
@laleshyagysaini4304
@laleshyagysaini4304 6 жыл бұрын
why do you use caption in your video that caption does not make sense
Implementing basic authentication in ASP NET Web API
19:17
kudvenkat
Рет қаралды 427 М.
黑天使只对C罗有感觉#short #angel #clown
00:39
Super Beauty team
Рет қаралды 36 МЛН
The Best Band 😅 #toshleh #viralshort
00:11
Toshleh
Рет қаралды 22 МЛН
Сборник Эксклюзивов 2024 - Уральские Пельмени
1:33:24
Уральские Пельмени
Рет қаралды 1,4 МЛН
I Helped 2,000 People Walk Again
15:31
MrBeast
Рет қаралды 24 МЛН
Token based authentication (JWT) in Web API and MVC
1:02:05
Tek Tuition
Рет қаралды 78 М.
Token Based Authentication in Web Service Asp.Net c# || Part-11
25:46
DotNet Revanth
Рет қаралды 53 М.
Web api bearer token example
17:21
kudvenkat
Рет қаралды 207 М.
Web API CRUD Operations Using Asp Net MVC and Entity Framework
45:55
Part 1 : Token based authentication using ASP.NET Web API 2
45:43
sourav mondal
Рет қаралды 292 М.