Skip to main content

Questions tagged [authentication]

Authentication is the process of providing a proof of identity or verifying identity.

authentication
0 votes
1 answer
11 views

How to implement Persistent Token based remember me services in Spring Security 6 / Spring Boot 3.1

I am trying to understand Spring Boot security properly. This is the last sticking point I have and the documentation lacks a lot of detail. All the other examples and questions are too old and not ...
theMyth's user avatar
  • 147
0 votes
0 answers
19 views

Can't get file because logged in is not kept

I'm encountering the same situation which is described in this page How to requests.Session().get if website does not keep me logged in? with another website: Trying to download an executable on this ...
Kaoru54's user avatar
  • 11
-1 votes
0 answers
14 views

Not showing login page in mediawiki

I have a mediawiki problem where, when clicking Create account or Login links, the site is not rendering the create account or login pages. To take the login case, the login link is https://b58.wiki/...
Jeremy Townson's user avatar
0 votes
0 answers
11 views

How to authenticate an Android app user using a cached Okta access token?

I'm new to Okta and trying to understand it's Identity Engine library. The scenario I want to achieve is this: User logins in once on the first app start Next app start we check the cached users ...
szaske's user avatar
  • 1,987
0 votes
0 answers
10 views

Module '"@clerk/nextjs"' has no exported member 'auth'

I am implementing Clerk Js authentication on my next app. import Link from 'next/link'; import React from 'react'; import { UserButton, auth, useAuth } from '@clerk/nextjs'; // import { auth } from '@...
Koza's user avatar
  • 1
0 votes
0 answers
9 views

MinIO console access restriction

I have deployed MinIO on my server and configured two URLs for access: minio.example.com - MinIO API minio-admin.example.com - MinIO Console (UI) I have set policies for my buckets (readonly policy ...
Anton Kozyk's user avatar
0 votes
0 answers
5 views

Receiving bad request when trying to fetch an api in nextjs using nextAuth

when i am trying to register, i am receiving a bad request 404. api url path is correct as well. i am using nextAuth for authentication. here's the github link. navigate to pages/api/register. what's ...
Abhimanyu's user avatar
0 votes
0 answers
29 views

PostgreSQL Login Error: "password authentication failed for user 'postgres'"

I've been struggling with an error while trying to log into PostgreSQL: psql: error: connection to server at "localhost" (127.0.0.1), port 5432 failed: FATAL: password authentication failed ...
Amr Maree's user avatar
0 votes
0 answers
10 views

Prometheus target give 403 error in OTEL collector Permanent error: remote write returned HTTP status 403 Forbidden;

Authneticaiotn Error (403) for export matrix data from OTEL Collector to Prometheus. here mentioned the required details of otel-collector.yaml file's like exporters and service part for the referance....
Nikunj Ramoliya's user avatar
1 vote
2 answers
15 views

nginx.conf best way to handle multiple if conditions within location?

I want to authorize the user based on his email without it getting super messy. Is there a better way to do this? http { map $http_user $user { default $http_user; } server { ... ...
Shreyas Kulkarni's user avatar
0 votes
0 answers
5 views

Cannot login into heroku using heroku login due to a spawn UNKNOWN error

I'm trying to login into heroku using the CLI 'heroku login' but the browser isn't open and the result is the log Error: spawn UNKNOWN Code: UNKNOWN Can anyone help me? please I'm trying to login into ...
Yosvany Pérez González's user avatar
0 votes
0 answers
9 views

com.google.firebase.auth.FirebaseAuthInvalidCredentialsException: The sms code has expired. Please re-send the verification code to try again

I am building a simple authentication app that authenticates the users through email/password and then through Phone. The layout is simple - User logs in with email/password in Login Activity and is ...
Sourav_039_CSE's user avatar
0 votes
0 answers
29 views

ASP.NET Core IIS redirects recursively redirects requests to login page

I have a website which uses cookie authentication builder.Services.AddAuthentication(opts => { opts.DefaultAuthenticateScheme = CookieAuthenticationDefaults.AuthenticationScheme; opts....
Erithax's user avatar
  • 31
0 votes
0 answers
17 views

JWT auth middleware failing

Why is my middleware failing? // middleware.ts export function middleware(request: NextRequest) { if (protectedRoutes.includes(request.nextUrl.pathname)) { return authMiddleware(request); } ...
mdegraaff's user avatar
1 vote
1 answer
22 views

How to configure Angular 18 Zone.js accepting Supabase promise?

I want to use Supabase authentication for my App and simply built this auth service: import { Injectable } from '@angular/core'; import { AuthResponse, createClient } from '@supabase/supabase-js'; ...
Haris Kurspahic's user avatar

15 30 50 per page
1
2 3 4 5
5069