Mordeo
Mordeo
CC#
Created by jourmonheimer on 2/17/2024 in #help
do i need classes or mvp
The exception tells you which field is unsupported
96 replies
CC#
Created by jourmonheimer on 2/17/2024 in #help
do i need classes or mvp
Have you tried searching what the correct keyword should be?
96 replies
CC#
Created by jourmonheimer on 2/17/2024 in #help
do i need classes or mvp
The exception is very clear. That's not a supported keyword in a SQL server connection string
96 replies
CC#
Created by 44 on 7/4/2023 in #help
❔ Newtonsoft json parse while ignoring issues
If you know that all it's missing is closing brackets, treat the JSON as a string and add closing brackets until deserialization works
9 replies
CC#
Created by schwartzmj on 6/28/2023 in #help
❔ New .NET Core Web API app. Guidelines for setting up authentication & authorization?
WDYM B2C? Sounds like regular auth
50 replies
CC#
Created by schwartzmj on 6/28/2023 in #help
❔ New .NET Core Web API app. Guidelines for setting up authentication & authorization?
Ask in #web if you have specific questions along the way. Broader audience
50 replies
CC#
Created by schwartzmj on 6/28/2023 in #help
❔ New .NET Core Web API app. Guidelines for setting up authentication & authorization?
Microsoft "Identity" can also help you there. It's not "roll your own" but you're still responsible for storing hashes of passwords
50 replies
CC#
Created by schwartzmj on 6/28/2023 in #help
❔ New .NET Core Web API app. Guidelines for setting up authentication & authorization?
You can delegate JWT creation, sign up, and login to auth providers such as Auth0 for a price
50 replies
CC#
Created by schwartzmj on 6/28/2023 in #help
❔ New .NET Core Web API app. Guidelines for setting up authentication & authorization?
It's higher risk than most things. You're responsible for password security now
50 replies
CC#
Created by schwartzmj on 6/28/2023 in #help
❔ New .NET Core Web API app. Guidelines for setting up authentication & authorization?
There are plenty of blog posts, tutorials, etc out there. They should all follow the same theme and should be using the same Microsoft supported code / packages
50 replies
CC#
Created by schwartzmj on 6/28/2023 in #help
❔ New .NET Core Web API app. Guidelines for setting up authentication & authorization?
Then you need to modify your app startup and insert middlewares to check for the JWT, validate them, and reject or deny requests. Also describes in the article
50 replies
CC#
Created by schwartzmj on 6/28/2023 in #help
❔ New .NET Core Web API app. Guidelines for setting up authentication & authorization?
If you're implementing your own JWT auth, you will need code to create a JWT. An API endpoints stands between that code and your client. The JWT nuget package referenced in the article will help you do that
50 replies
CC#
Created by schwartzmj on 6/28/2023 in #help
❔ New .NET Core Web API app. Guidelines for setting up authentication & authorization?
Not a bad article
50 replies
CC#
Created by schwartzmj on 6/28/2023 in #help
❔ New .NET Core Web API app. Guidelines for setting up authentication & authorization?
50 replies
CC#
Created by Simo on 10/6/2022 in #help
does anyone have an example of using Google Authenticator authentication as part of a SPA?
I did some totp in either Python or C, but I'm on vaca right now 🙂
25 replies
CC#
Created by Fruity Mike on 9/12/2022 in #help
File logs and docker
For example, API logs to /var/log/myApi, which is bound to some dir on the host
4 replies
CC#
Created by Fruity Mike on 9/12/2022 in #help
File logs and docker
You can kill or swap the container without losing your logs
4 replies
CC#
Created by Fruity Mike on 9/12/2022 in #help
File logs and docker
Are you able to configure the container such that the API logs to a host directory?
4 replies
CC#
Created by Metalkon on 8/17/2022 in #help
Would only learning blazor (for the frontend) be enough for a beginner backend developer?
If a company flush with cash and devs were to do a WASM app, I'd expect they would go with C/++, Rust, or maybe Carbon when it comes out. Blazor is good for rapid dev though. These are my personal opinions
27 replies