Category "authentication"

Log a user out of a website when they put their computer to sleep

This is a bizarre one. We have a Laravel website, and on said site we have a timer per user, where they get 15 minutes of being inactive before being booted. W

Prevent Browsers not to remember password

We have an application with a login screen which has input field text and password. What I am trying to achive here is; Prevent browsers to ask if, user wants

Authentication in Jersey [closed]

I want to implement authentication for my Jersey0based server/client REST but I'm not sure how exactly to lay out the code. Basically for ev

Laravel no logout option from menu after successfull login

Hope anyone else had the same issue and was able to solve this problem. I installed a fresh Laravel project and used php artisan make:auth to get the basic auth

.NET core - Configure JWT Authentication at runtime

I have an ASP.NET Core 2 Web Application and I am using the [Authorize] attribute on the controllers that require authentication. As authentication mechanism, I

Angular google authentication with firebase

I want to create simple login authentication with google using firebase. I have installed angular CLI: 13.1.4, firebase, firebase: 10.1.1 & @angular/fire

How to add roles to rails app from console? Cancan, Devise

I can create user already, but how add roles dynamically? from console or with admin rules? Devise, CanCan. I am new at Rails, but if you will propose me some i

Redirected to login after refreshing page in nuxtjs and laravel sanctum

i have a problem with Nuxt SSR mode in production auth with Laravel sanctum login success but when refresh any page, redirecting to login page and logout !!!

Blazor @attribute [Authorize] tag is not working

I have a working .NET Core 3.0 MVC website, using AzureAD for authentication, this all works fine. I have started to migrate some of the front-end pages to Blaz

Spotify Authentication auth_service_unavailable

I am trying to login to spotify. Although when the app is installed it always throws an AUTHENTICATION_SERVICE_UNAVAILABLE error. If the app is uninstalled the

Why do I get null auth user inside middleware?

The global middlewares, the ones which are run for every request on every route: protected $middleware = [ \App\Http\Middleware\CheckForMaintenanceMode

Django Authenticate returns None

I have the following code snippet: user = User(username='[email protected]',email='[email protected]') user.set_password('pass') user.save() u = authenticate(username='[email protected]', p

How does cookie based authentication work?

Can someone give me a step by step description of how cookie based authentication works? I've never done anything involving either authentication or cookies. Wh