From the course: Advanced Web APIs with ASP.NET Core 8
Unlock the full course today
Join today to access over 24,800 courses taught by industry experts.
Introduction: Securing APIs - ASP.NET Core Tutorial
From the course: Advanced Web APIs with ASP.NET Core 8
Introduction: Securing APIs
- [Instructor] It is time that we talk about securing our APIs, and there are several aspects to that. First of all, we need to make sure that the communication with the server is encrypted. Then there are certain security concerns for cross-site calls done via JavaScript. And finally, we'll have a glimpse at restricting access to the API for certain users. Let's get started.
Practice while you learn with exercise files
Download the files the instructor uses to teach the course. Follow along and learn by watching, listening and practicing.
Contents
- (Locked)Introduction: Securing APIs33s
- (Locked)Redirecting to HTTPS3m 48s
- (Locked)Enforcing HTTPS3m 57s
- (Locked)Consuming the API with JavaScript7m 32s
- (Locked)Cross-origin resource sharing (CORS)3m 42s
- (Locked)Enabling CORS5m 32s
- (Locked)Adding ASP.NET Core Identity9m 34s
- (Locked)Adding token authentication8m 42s
- (Locked)