- Видео 22
- Просмотров 581 674
Code with Julian
Великобритания
Добавлен 28 авг 2017
On this channel we learn programming the easy way! Here you can find insightful, yet mostly focused tutorials, meant to provide the essence of what is being learnt. My motto? Nothing is too hard to learn! And so, here we are breaking everything down into bite-sized chunks, ready to learn and put in practice.
This channel's goal is not only to simplify the tech stack so that it's easier to understand, but also to give real-world examples that can help put in practice what we learn.
If you enjoy tutorials and useful discussions about the .NET stack, and web development in general then welcome!
This channel's goal is not only to simplify the tech stack so that it's easier to understand, but also to give real-world examples that can help put in practice what we learn.
If you enjoy tutorials and useful discussions about the .NET stack, and web development in general then welcome!
ChatGPT Tutorial in .NET for BEGINNERS
Today we'll set up ChatGPT in a .NET 6 application. Specifically, we'll integrate the GPT-3 API into a Blazor Server app. This app is meant to help us improve our coding experience.
In the second part, we'll make a web app that publishes websites online with just one command.
👉Join our email club: signup.codewithjulian.com
🎉Check Out Further Resources: codewithjulian.com
👍If you enjoyed this tutorial, please like this video consider subscribing for more content like this!
😎Subscribe for endless .NET Tutorials: ruclips.net/user/CodewithJulian
🎁Source code: github.com/codewithiulian/CodeBuddy
🖊 Useful Notes:
At minute 06:00 you may want to return if the prompt is empty, something I missed from the ...
In the second part, we'll make a web app that publishes websites online with just one command.
👉Join our email club: signup.codewithjulian.com
🎉Check Out Further Resources: codewithjulian.com
👍If you enjoyed this tutorial, please like this video consider subscribing for more content like this!
😎Subscribe for endless .NET Tutorials: ruclips.net/user/CodewithJulian
🎁Source code: github.com/codewithiulian/CodeBuddy
🖊 Useful Notes:
At minute 06:00 you may want to return if the prompt is empty, something I missed from the ...
Просмотров: 1 748
Видео
Azure App Service in 15 MINUTES | Web App Tutorial
Просмотров 68 тыс.Год назад
In this video we’ll talk about Azure App Service and I’ll show you how EASY it is to release a Blazor Server app to production through Visual Studio, then through App Service Deployment Center with just a few clicks. Finally, we’ll set up a DevOps CI/CD Pipeline that will release to your App Service automatically. 👉Join our email club: signup.codewithjulian.com 🎉Check Out Further Resources: cod...
How to Setup a Minimal API in .NET 7
Просмотров 4,2 тыс.2 года назад
In this tutorial we'll take a look at how to configure a minimal api in .NET 7. We'll also take a look at the Minimal API filters, added into .NET 7 and how to properly set them up. 🎁 Final Project (source code) and Postman Instructions 👉resources.codewithjulian.com/minimal-api-files20 📝 Written article: codewithjulian.com/setup-minimal-api-net7 👉Join our email club: signup.codewithjulian.com 🎉...
Authentication and Authorization with Okta in .NET 6 Blazor Server
Просмотров 15 тыс.2 года назад
In this video we'll learn how to add Authentication and Authorization with Okta in a .NET 6 Blazor Server application. By the end of this tutorial, we will have a Blazor Server web application, configured with Okta OAuth 2.0 authorization code flow. We will also learn how to set up the official .NET 6 OIDC (OpenID Connect) authentication middleware. 🎁 Authorization Code Flow mini PDF 👉 resource...
Authentication in ASP.NET with Identity Server 4 | Tutorial Part 2
Просмотров 31 тыс.2 года назад
We are going to add authentication and authorization to a Blazor Server app with IdentityServer4. The aim of this tutorial is to simplify the process of securing a Blazor application, showing how we can easily generate JWT tokens and restrict user access based on their authentication state. 👉Join our bi-monthly email club: signup.codewithjulian.com 🎉Check Out Further Resources: codewithjulian.c...
ASP.NET Identity with Identity Server 4 | Tutorial Part 1
Просмотров 71 тыс.2 года назад
In this tutorial I will show you how to Configure ASP.NET Identity with Identity Server 4. The aim of this tutorial series is to ease up the Authentication process and provide a clear step-by-step process on how to secure your web applications. The entire tutorial will be done in .NET 6 and Blazor. 👉Join our bi-monthly email club: signup.codewithjulian.com 🎉Check Out Further Resources: codewith...
Beginners ASP.NET Core Identity Tutorial
Просмотров 45 тыс.3 года назад
In this video tutorial I’ll explain the basics of ASP.NET Core Identity, specifically the Registration, Registration confirmation, logging in and out will be broken down line by line. We’ll be scaffolding all the necessary resources to expose this functionality, allowing us to improve and tailor the authentication processes for our own applications. 👉Join our monthly email club: signup.codewith...
.NET 6 Web API Authentication | Minimal API & Swagger (CRUD)
Просмотров 78 тыс.3 года назад
In this tutorial we’ll create a .NET 6 Web API (Minimal API) that will enforce JWT Authentication and Authorization. Furthermore, we’ll add Swagger support and configure Bearer Authentication for it, so that all of our endpoints can be testable from Swagger UI using a bearer token. By the end of this tutorial, you will know: - How to create a Minimal API project - Create and use Data Transfer O...
Building a Web API in .NET 6 | Minimal API
Просмотров 3,7 тыс.3 года назад
In this tutorial we’ll build a Web API in .NET 6 aka Minimal API. With just a few lines of code we can not only setup the endpoints for a fully-fledged CRUD API class, but it sets the tone for an entire enterprise application. By the end of this tutorial, you will know: - How to create a Minimal API project - Create and register services with interfaces - Expose service methods through the API ...
ASP.NET Core Web API Authentication and Authorization with JWT (Json Web Token)
Просмотров 194 тыс.3 года назад
In this tutorial we’ll setup a JWT (JSON Web Token) in an ASP.NET Core Web API, implementing Authentication and Authorization. We’ll talk about why it is important for your ASP.NET Core Web API to require authentication with JWT. From project setup to testing this entire process with Postman, by the end of this tutorial you will have a good idea of how to setup authentication and authorization ...
What is Json Web Token? JWT Token Explained
Просмотров 15 тыс.3 года назад
In this video we discuss what Json Web Token (JWT) is, why it’s important and how it works. We’ll start with an introduction on what Authentication is. Following, the authorization is explained and this is important because they are important concepts that JWT is built upon. We’ll talk about how JWT Authentication and Authorization works. By the end of this video, you’ll have a good idea of wha...
Create a CRUD Blazor Webassembly API Controller
Просмотров 7 тыс.3 года назад
In this tutorial we’ll create and consume a CRUD API Controller in Blazor WebAssembly. This is focused on the main HTTP Request types: Create, Read, Update and Delete. By the end of this video, you will know how to create an API with all the basic endpoints, to give them a custom URL route and to consume it from your Blazor WebAssembly components using HttpClient. In the first part of the tutor...
Building a Blazor WebAssembly API Controller in .NET 5
Просмотров 5 тыс.3 года назад
In this tutorial we’ll create and consume a Web API in Blazor WebAssembly in .NET 5. This tutorial will focus on the Read part of the CRUD set of API Actions. At the end of this video, you will be able to build your own Blazor WebAssembly API. Also, you should become familiar with how to consume a web api endpoint in Blazor WebAssembly, using HttpClient. Source code: github.com/iulianoana/blazo...
SignalR in Blazor - Making Real-Time Chat with Blazor Server SignalR Example
Просмотров 17 тыс.3 года назад
As part of this tutorial, we’ll set up a simple real-time chat web app using Blazor Server with SignalR in .NET 5. We’ll set up the Project, create our very first SignalR Hub, configure the necessary services. Finally, we’ll layout the chat component to send and receive messages in real-time! Source code: github.com/iulianoana/signalr-blazorserver 0:00 - Intro 0:22 - Create a Blazor Server app ...
Deleting Records & Blazored Modal: Blazor Tutorial in Visual Studio 2019 - Recipe Manager Part 7
Просмотров 2,1 тыс.3 года назад
In this tutorial I’ll show you how to delete some records from a Sql Server Database with Entity Framework Core in Blazor Server in .NET Core. We’ll install and configure a package called Blazored Modal which will show a confirmation popup window before deleting the record. Source code: github.com/iulianoana/RecipeManager-7 0:00 - Intro 1:35 - Install and configure Blazored.Modal 7:24 - Create ...
Create records in Blazor Server - Blazor Tutorial in Visual Studio 2019 - Recipe Manager Part 6
Просмотров 1,7 тыс.3 года назад
Create records in Blazor Server - Blazor Tutorial in Visual Studio 2019 - Recipe Manager Part 6
Blazor EditForm - Blazor Tutorial in Visual Studio 2019 | RecipeManager Part 5
Просмотров 4,8 тыс.3 года назад
Blazor EditForm - Blazor Tutorial in Visual Studio 2019 | RecipeManager Part 5
Retrieve data using EF Core - Blazor Tutorial in Visual Studio 2019 | RecipeManager Part 4
Просмотров 1,8 тыс.3 года назад
Retrieve data using EF Core - Blazor Tutorial in Visual Studio 2019 | RecipeManager Part 4
Basics of EF Core - Blazor Tutorial in Visual Studio 2019 | RecipeManager Part 3
Просмотров 1,5 тыс.3 года назад
Basics of EF Core - Blazor Tutorial in Visual Studio 2019 | RecipeManager Part 3
Setting up a Blazor Server App - Blazor Tutorial in Visual Studio 2019 | RecipeManager Part 2
Просмотров 2,8 тыс.3 года назад
Setting up a Blazor Server App - Blazor Tutorial in Visual Studio 2019 | RecipeManager Part 2
Setting up a Blazor Server App - Blazor Tutorial in Visual Studio 2019 | RecipeManager Part 1
Просмотров 7 тыс.3 года назад
Setting up a Blazor Server App - Blazor Tutorial in Visual Studio 2019 | RecipeManager Part 1
Serilog Tutorial - Starting out with Serilog in ASP.NET Core (Blazor app)
Просмотров 4,2 тыс.3 года назад
Serilog Tutorial - Starting out with Serilog in ASP.NET Core (Blazor app)
very useful, Thanks Julian.
Hi Julian, Excellent video. One question though, i have angular app and .Net 8 Rest API. In my case where will I implement Open Id Connect and Okta authentication logic i.e login, logout and middleware ? Will it be on Angular side or Rest API side ?
Can someone confirm that when hosting more than 1 web app on the SAME app service plan, the computing resources are shared between the different apps ?
Nicely explained! Multumim!
hello we already finished our code website we need to push it on Azure
This was going so well, until I used the current DotNet and there is no startup.cs anymore. I don't know the new layout well enough to figure where to put your startup changes.
What’s the backend storage on the azure app service?
NOTE @everyone , Microsoft has been transitioning from the classic Release pipelines to a unified approach using YAML-based pipelines in Azure DevOps. This shift aims to streamline the build and release processes into a single, cohesive pipeline. As a result, the separate "Releases" menu has been deprecated in favor of YAML pipelines that encompass both build and deployment stages. I followed self hosted agent for build process.
Very good tutorial
This is the most useful video ever explained its content, Great job
I think you should use a different database for identity server tables.
best and most efficient tutorial I've found, and it still works great, even with .Net 8. Some things look a little different, but they're easy to find
This is a GREAT lecture, Thank you for keeping it simple and quick.
Very nice to learn DevOps… for a new person like me it’s bit fast. 😊
Can you provide the same example with .net8. If you feel, there is no change, then please say, no change. we will use this step to implement.
one hour of only the hows but not the whys
Amazing guide, you kept it simple and informative, also, I appreciate that you showed a few ways to deploy the app, thank u!
Wow, thank you so much for your time !😃
thnks
Unfortunately we didn't have GrantType.Authorzation code explanation :(
It was good..
Great video! I like that you show the different ways of setting it up.
Great content. I wonder how did you learn these , maybe im blind but I couldn't find any document for jwt in Microsoft website.
Bro i have an doubt.. You have declared Role in the models and you call Roles in the api end point how it's gonna work i didn't get that
I'm using .NET 8 and doing the initial Update-Database only creates the EF_Migrations table to create the other Identity tables I had to run the Add-Migration followed by the Update-Database. Also I was having certificate issues and had to add TrustServerCertificate=True; to the connection string to work on my local DB server
Valuable content! It would be easier to follow if you'd speak a bit more slowly, had to reduce playback speed :D
Very informative tutorial and very crisp. Thanks!
Quick coverage of content in minimal time. Great! tutorial. Subscribed ☺
wow...this gus is realy a nice tracher...i actually had to pause the video first and click the subscribe button
Thanks so much
Awesome video, keep it up!!!!
Simple, efficient, straight to the point. Awesome tutorial ❤
excellent!!
Thank you so much, it helped me a lot
thank you, i had to subscribe
thanks bro
Can you share the app files?
Hi thank you for the video, I keep getting ASP-984f BadGateWay when web app deployment is processing. What are the reasons or how can I avoid that? I am using a student account. Thanks
you are amazing can you do a vedio on sending requests from a client react app side to the api,i would like to see how it works with jwt,am interested in the logic.Otherwise your tutorial is the best on jwt
The access token is null. How do I fix this?
you saved my graduate project thank u
Thank you creating the video! You made it so simple!
That was so helpful ,Thank you so much .
I created an asp.net core mvc web application for individual accounts. I abstracted out EF core, and have all the authorization/2FA, pw reset, email authorization, account lockout... etc, handling in place. I eventually would like to create a mobile application to go with it. I planned on having the user use the website for setting up/editing their account personal details, and password changes/reset. I figure right now is a good place to create the Web API and start configuring now common data access/changes the web app and mobile application will use. What is the best way to approach this, and leave the current authorization/authentication in place for the web application, but have it also authenticate to the web api? Thank you!
Thank you for the great tutorial!
Hi, Do you have a video to authenticate Blazor Server App using MS(Work & school) Account?
Quensiont? I think Client shoud save token. Client will not gettoken when call api, it will get token from localstore or catche....
Valuable lesson. Thanks Julian.
Curious, I haven't ever used a service that implemented Okta. Why are you suggesting it? I mean, is not popular, do you have any tutorial for Google OAuth?
Good stuff bro!