Questions tagged [custom-authentication]

176 questions
1
vote
0 answers

Lambda Authorizer of type Request not working in Kotlin

I've been trying to use a custom authorizer ( lambda authorizer ) of type Request for a certain HTTP API in Kotlin. Taking inspiration from this, I wrote the following : class AuthorizerHandler : RequestHandler,…
1
vote
1 answer

Amplify CUSTOM_AUTH login issue on iOS swift

I am new to Amplify and want to integrate it with iOS swift. I followed amplify_doc to and created amplifyconfiguration.json and added it to the project. Configured with credentials provided such as PoolId, Region, AppClientId and web domain. Set…
1
vote
0 answers

Blazor Server .Net 6 CustomAuthenticationStateProvider from ServerAuthenticationStateProvider not working

I have a complete custom implementation of JWT auth for Blazor Wasm + Web Api. I would like to make it work with Blazor Server (with the proper modifications). 1, Startup/Program // I tried with every…
1
vote
0 answers

Wrong otp input reset the session AWS phone auth in flutter

I have implemented custom auth using phone number only using AWS amplify. The issue that i am facing is, after entering mobile number from user, otp is sent to mobile number. Now, after taking otp as user input we pass the entered otp into await…
Mit
  • 318
  • 2
  • 10
1
vote
4 answers

How to send data colected with Laravel Livewire to Fortify?

I'm not familiar with Vue.js at all, so found a good replacement using Livewire. The challenge that I've got to solve is to have a user friendly registration on my website using Fortify + Livewire. The registration process is a multistep one and…
1
vote
0 answers

AWS API Gateway Custom Authorizer: create IAM Policy for Unauthenticated Session

I have a GraphQL API Gateway endpoint which sits behind a custom authentication function which I’d like to also allow certain endpoints for consumption by ‘unauthenticated’ users (for which my Cognito User Pool allows). Currently, the custom…
1
vote
1 answer

Custom Authentication failed after upgrade to Oracle APEX 18.2

My environment is: Windows 10 XE 18C Apex 18.2 Ords 18.4 I upgraded from Apex 5.1 and my custom authentication no longer works. When I attempt to login to my application 104 on page 101, after I input the Username and Password and press Login I…
user3138025
  • 795
  • 4
  • 17
  • 46
1
vote
3 answers

How to use Custom User Model for authentication Djoser - Django

Its not clear from the documentation, but I want to achieve 2 things: Use my custom user model which inherits from models.Model. It has a password field which stores password using sha1. I need to use model with that password field for…
1
vote
1 answer

Is it possible to instruct AWS Custom Authorizers to call AWS Lambdas based on Stage Variables?

I am mapping Lambda Integrations like this on API Gateway: ${stageVariables.ENV_CHAR}-somelambda So I can have d-somelambda, s-somelambda, etc. Several versions for environments, all simultaneous. This works fine. BUT, I am using Custom…
1
vote
1 answer

ValueError: Cannot create form field for 'author' yet, because its related model 'settings.AUTH_USER_MODEL' has not been loaded yet

I am trying to set up a basic blog with a custom auth model. I am trying to get a simple form to work but somehow I am not able to make it work. I am not sure what is causing the error. This is a fresh app and a fresh project I am working on. I…
smishra
  • 21
  • 1
  • 3
1
vote
1 answer

How to create a laravel 5.5 custom auth?

I created a custom Auth controller in Laravel 5.5 with the action "store" inside it, then I authenticated it using the $auth->attempt() method that returns true. So far so good, the problem starts when I try to use the "auth" middleware for my panel…
Fred
  • 11
  • 3
1
vote
0 answers

Custom auth in Firebase using userName and password

What is the best approach for creating a custom auth in firebase so that users can logIn using their userName and password? I have noticed that the most common approach on SO is to actually mask the userName logIn with an email (query on userName)…
1
vote
1 answer

Authorizing AWS APIGateway using Auth0 by custom authorizer approach

The tech stacks are reactJS in the frontside and the backend is powered by APIGateway and Lambda. I am using Auth0 as Identity service in my react App. On authenticating through one of the social logins given by Auth0, I get back access_token,…
1
vote
2 answers

JAVA Spring Custom Authentication Using MongoDB for fetching stored user credentials

Hi Stackoverflow team, I am facing an issue in my REST Call which I am clueless about after trying to dig into the HTTP errors. Somehow the authorization isn't working , eventhough the generation and fetch of the JWT token is successful. Short…
1
vote
1 answer

Rails Custom Authentication with internal jar security

Our company uses a jar file with java code to authenticate users for access to internal websites. I have so far been able to integrate that jar file into a devise strategy which allows a user to sign in. However when I run the code, I get a…