Skip to main content
Filter by
Sorted by
Tagged with
Best practices
0 votes
0 replies
40 views

I'm using a third party identity provider for authentication towards my own services. After an user finishes authentication, my IdP returns an JWT access token. The question is: What is the better ...
JustAPie's user avatar
0 votes
1 answer
63 views

I'm configuring authorization in my ASP.NET Core 8 project, and I get this error while testing JWT token auth via Swagger: content-length: 0 date: Sun,12 Apr 2026 01:37:08 GMT server: Kestrel www-...
Uchqunov Muhammadamin's user avatar
-1 votes
1 answer
34 views

What is the best way to detect first-time login after registration and show a page only once? GitHub project: https://github.com/MarkpentX/lawyer-firm-app.git
Mark's user avatar
  • 1
Advice
1 vote
1 replies
42 views

My question is if we are using JWT auth for authentication, then where should i put my access token for calling APIs quickly so that my application feels fast as compare to other and also there is one ...
Om Kumar's user avatar
Advice
0 votes
2 replies
67 views

In the context of client side session management when user authenticates herself, she gets a token that is specific to her. When we get that token at the server side we are sure that token relates to ...
dRIFT sPEED's user avatar
1 vote
1 answer
46 views

I'm building a matchmaking service for a browser gaming platform using Blazor web assembly, Microsoft Entra external id and SignalR. To connect clients to the matchmaking service, I have created an ...
Lucas Pires Savassa's user avatar
-1 votes
0 answers
62 views

For Mobile telephony based application, we are trying to authenticate via AKA-V1 using SIM information, we do have our own control over GSI Android which enable us to provide permission required for ...
Sandeep's user avatar
  • 29
0 votes
0 answers
56 views

I'm trying to protect the client side in my Next.js app using a custom session with better-auth, but the role property not appear inside the session object , but when I display session.user.role` it ...
MGDev's user avatar
  • 1
Tooling
0 votes
5 replies
50 views

How can I use Google OAuth in an Expo Go app, and how does it work once the app is published on the Play Store? Currently, in Expo Go, the app is treated like a web application, so it uses a Web ...
Ome Tiwari's user avatar
6 votes
0 answers
68 views

I'm trying to query data from GridDB Cloud using its REST/WebAPI endpoint. The official docs mention both Basic Authentication and API key-based access, but I'm unclear on the exact header format and ...
AS Ansari's user avatar
0 votes
0 answers
42 views

I'm working on a Blazor Server App which has to authenticate via LDAP (it works), and set a cookie so that the user must authenticate only e.g. once a week. I have created a minimalAPI in the program....
tzs's user avatar
  • 21
Advice
0 votes
4 replies
102 views

I’m currently working on a system where agents interact with multiple external services such as Google APIs, Slack, and GitHub. All of these services use OAuth, which means access tokens expire ...
Devin Oldenburg's user avatar
Best practices
0 votes
6 replies
107 views

.NET MAUI Blazor Hybrid and Web App is the project template of the cross-platform applications available in Visual Studio: Actually, it is the set of 4 projects (details): It has been documented how ...
Takeshi Tokugawa YD's user avatar
Best practices
2 votes
2 replies
125 views

I'm building a Node.js/Express API and need to implement a user context system that allows me to access the authenticated user from anywhere in my application (services, utilities, etc.). The Problem: ...
JoseYC's user avatar
  • 1
0 votes
0 answers
50 views

We use Duende Identity Server (7.4.4) to enable sign in on our site. We offer a general Microsoft Single Sign On button through the Microsoft.AspNetCore.Authentication.MicrosoftAccount Nuget package. ...
Noah Orr's user avatar
Advice
3 votes
1 replies
113 views

We have some AIoT devices and want to authenticate with RADIUS using PHP. The new RADIUS Server ask for the Message-Authenticator attribute and the build-in RADIUS functions of PHP can not do it. <?...
P95747001's user avatar
Best practices
2 votes
1 replies
107 views

I’m using a DDD approach in my application. I want to learn best practices for writing DDD code the way Big Tech companies and experienced developers do it. So, I have a User entity with the following ...
Виталий Иванов's user avatar
Advice
1 vote
0 replies
49 views

I’m working on a multi-tenant SaaS application where different organizations can create and manage business plans and financial forecasts. Each organization has multiple users with different roles (e....
Upmetrics's user avatar
Advice
0 votes
0 replies
53 views

I am designing the core logic for a user registration flow, and my main concern is mitigating Sybil attacks (mass creation of fake accounts). My goal is NOT to block these users during registration. ...
Amirreza Barani's user avatar
Tooling
0 votes
2 replies
126 views

I'm building a commercial desktop application in C# and I need to implement license verification that prevents key sharing between users. What I'm trying to achieve: Bind each license key to a ...
Luxivantee's user avatar
Best practices
0 votes
1 replies
29 views

Can someone write this for nextjs? import { createRoot } from 'react-dom/client' import App from './App.tsx' import authgear from "@authgear/web" async function init() { try { // configure ...
asdas's user avatar
  • 1
0 votes
0 answers
57 views

We are building an application where there are several components that must all work together that are not all entirely in my control. First, a frontend written in Blazor Server that does some ...
Kayden Miller's user avatar
Best practices
0 votes
2 replies
82 views

I'm building an application which integrates a 3rd party SSO (IVAO) to authenticate users. My stack is React frontend and NestJS backend. This is the user flow: User signs in with IVAO SSO The user ...
Jorge Calo's user avatar
1 vote
0 answers
61 views

I've been having this hiccup for quite a while. I'm using NextJS 16 to build a fullstack application with separate NestJS backend. The problem is when I perform a refresh logic, the httpOnly cookies ...
Jeffry's user avatar
  • 11
Best practices
1 vote
3 replies
141 views

I’m building a React + TypeScript app and using Axios for API requests. I have an AuthProvider using React Context to manage the user and token, and I’m running into a few questions and issues: Do I ...
JesSy's user avatar
  • 1
Best practices
1 vote
2 replies
73 views

I’m designing a microservices-based platform with the following characteristics: Multi-tenant Identity-based access model (not traditional role-only RBAC) Services communicate over HTTP A gateway/...
Hamza Boukhtam's user avatar
0 votes
1 answer
44 views

In the latest version of our product, we adopted cloud-sdk-java (5.24.0) as the underlying implementation for sending data, whereas this functionality was custom-developed by our team previously. ...
zhaoyu huang's user avatar
Best practices
0 votes
1 replies
78 views

I am implementing a Chainlit application that needs to support two authentication methods depending on how users access the app. Use Cases Microsoft Teams Tab App Users are automatically ...
chaimaa's user avatar
0 votes
0 answers
96 views

I'm trying to figure out the simplest way to provide authentication/password protection for a Quartz deployment. I'd like the solution to be something that minimizes both complexity and cost, even a ...
Eli Boyden's user avatar
Best practices
0 votes
2 replies
64 views

Whats the best approach for rendering HTML on the client after passing authorisation and authentication? Below is my current code but I'm a bit stuck on where to go next, as I don't want to implement ...
Gruppr's user avatar
  • 61
0 votes
0 answers
26 views

I am encountering an authentication issue when using Attu to connect to a Milvus instance hosted on Zilliz Cloud, while connecting to the same instance via SDK code works correctly. My setup is as ...
Schiffer Marget's user avatar
Best practices
0 votes
2 replies
62 views

I’m using passkeys with ASAuthorizationController (ASAuthorizationPlatformPublicKeyCredentialProvider). Registration and authentication work correctly on iOS 16+. However, if the user explicitly ...
Wahab Khan Jadon's user avatar
2 votes
0 answers
72 views

I'm trying to configure a form-based authentication for my JSF app in Wildfly 39, and I've come across these sources: https://rieckpil.de/howto-simple-form-based-authentication-for-jsf-2-3-with-java-...
lzzgabriel's user avatar
1 vote
0 answers
79 views

I'm looking into implementing authentication in a client side Blazor application with wasm. Microsoft has a sample for exactly that scenario, but - not very confidence inspiring - it seems broken: ...
Voo's user avatar
  • 30.5k
0 votes
0 answers
36 views

I have this configuration: { "mimeTypes": { ".js": "application/javascript", ".mjs": "application/javascript", ".cjs": "...
ThunD3eR's user avatar
  • 3,482
1 vote
1 answer
85 views

I’m integrating authentication using Apple’s authorization APIs and supporting multiple iOS versions: • ASAuthorizationController (iOS 13+) • ASAuthorizationPlatformPublicKeyCredentialProvider (...
Wahab Khan Jadon's user avatar
Best practices
0 votes
3 replies
38 views

I’m working on an Angular frontend with a .NET BFF backend secured using Azure AD authentication (cookie-based, no tokens stored in local/session storage). Current setup: Frontend: Angular Backend: ....
Kunal's user avatar
  • 11
Best practices
2 votes
4 replies
71 views

I am designing a mobile application with a user login system. I am going to implement refresh tokens in order to allow for users to only have to log in once every 30 days. How do I differentiate each ...
Calax's user avatar
  • 91
0 votes
1 answer
101 views

Problem I'm trying to checkout a private GitHub Enterprise repository in a GitHub Actions workflow, but it consistently fails with a "Not Found" error even though I have a valid Personal ...
Athpath's user avatar
Advice
1 vote
1 replies
64 views

I try to configure my Symfony project with a User Management to separate my user management from my app database. I found some tools, as Clerk, Supabase, Authentik and I have try each tool, but ...
uphill's user avatar
  • 33
1 vote
0 answers
71 views

I’m implementing Sign in with Apple / Passkeys using ASAuthorizationControllerDelegate and handling errors via: func authorizationController( controller: ASAuthorizationController, ...
Wahab Khan Jadon's user avatar
Best practices
0 votes
9 replies
62 views

I am building a React + python(Fast API) application where these 2 applications are connected via Rest API. My question is if anyone who knows the ENDPOINT , and params that needs to be sent, Anyone ...
Rishi Sivanandan's user avatar
Advice
0 votes
1 replies
97 views

I lack experience with system design, and I’m struggling to understand how all the pieces fit together. I’d appreciate some help seeing the “big picture.” I’m building a web application with a ...
David Martínez Gil's user avatar
-4 votes
1 answer
216 views

I want to allow directory index (list directory in browser) but only for users logged in via php. Users not logged in should not have any access. Is it possible to log in to apache (AuthType Basic, ...
user30424's user avatar
  • 271
Best practices
1 vote
1 replies
50 views

I am building a website with Next.js and Supabase (beginner here). I created a page.tsx with a layout.tsx in a dashboard folder in my app router. Currently I am doing a check in layout.tsx to verify ...
Flomo's user avatar
  • 1
0 votes
0 answers
122 views

I am integrating Zoho Desk ASAP widget with JWT-based authentication in my web application. I have completed the initial setup, but even after login, the widget still behaves like a guest user instead ...
gopinath krm's user avatar
Advice
1 vote
0 replies
35 views

I set up sqladmin to fastapi project. I used aminalaee docs for set up. That works. But I do not understand some components as <token> and <secret_key>. Can somebody clarify those ...
aleksandr's user avatar
1 vote
1 answer
45 views

I am using a .NET 4.8 application with Angular v22. When I try to login via a controller method, it always throws an exception that the email claim is missing. But it is present in the JWT token. Here ...
Ashu's user avatar
  • 40
0 votes
1 answer
104 views

I am trying to integrate Azure AD login in my .NET 4.8 application with an Angular frontend. But when I try to authenticate, it's returning an http 401 "Unauthorized" error. In the ...
Ashu's user avatar
  • 40
Best practices
2 votes
0 replies
33 views

I’m building a web application and started with authentication, but I keep feeling it’s incomplete. In a professional production environment, what are the essential steps or criteria to ensure the ...
MrYasyn's user avatar

1
2 3 4 5
1512