Skip to main content
The 2024 Developer Survey results are live! See the results

Questions tagged [authentication]

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

0 votes
0 answers
2 views

Poe bot login in iframe - email working but not phone and google

I'm using GoDoaddy with a line of html added (they usually only have fairly basic templates but there is an option to paste in code or html pages) the link to the Poe bot works fine but the first use ...
Dain Martin's user avatar
0 votes
1 answer
9 views

Next js next auth credentials with custom user

I am building a project using the t3 stack Using app router, TRPC, prisma, and next auth. With the initial set up and even on documentation, the user model for prisma they give is with an ID, but I ...
Ash Gharibyan's user avatar
0 votes
0 answers
8 views

AWS ApiGatway http integration authentication

I have an AWS ApiGateway v2 websocket api that sends request to a microservice (deployed on Kubernetes not lambda) using a HTTP integration. This is working, but now I need to add authentication ...
Ross Sullivan's user avatar
0 votes
0 answers
13 views

How to configure Google OAuth 2.0 to AVOID requesting user email address?

I'm using Google OAuth 2.0 for user authentication in my application, and it's working well. However, during the authentication/registration process, users are notified that my application will ...
user3776663's user avatar
-2 votes
0 answers
30 views

Can't remove credentials from git on MacOS(OSX)

I'm trying to remove the saved GitHub credentials from my local machine because I need to log in with another account in the terminal. I tried everything I found, but nothing worked for me. Every time ...
DreamGamer's user avatar
  • 1,583
0 votes
0 answers
6 views

Problem on frontend Authentication development

<script> document.addEventListener('DOMContentLoaded', function() { fetchUserData(); }); function fetchUserData() { const apiUrl = 'https://game-...
Soham Pal's user avatar
0 votes
0 answers
9 views

callbacks not getting called using NextAuth.js with CredentialsProvider

Issue is after successful authorize and return user + jwt token it's not getting in any of the callbacks options for NextAuth are as follows: import GoogleProvider from 'next-auth/providers/google'; ...
SMEET KOTHARI's user avatar
0 votes
0 answers
24 views

How to get pap authentication result in freeRADIUS?

In freeradius, in authenticate section of default virtual server, I have the following code Auth-Type PAP { pap if (ok) { update reply { Reply-Message:="Access Accepted" ...
tahzibi.jafar's user avatar
0 votes
0 answers
22 views

how to auto login after signUp using Auth.php in Laravel11

Auth.php <?php return [ 'defaults' => [ 'guard' => env('AUTH_GUARD', 'web'), 'passwords' => env('AUTH_PASSWORD_BROKER', 'use_accounts'), ], 'guards' => [ ...
Ata Ur Rehman's user avatar
0 votes
0 answers
24 views

Specify expiration time when requesting access token in microsoft login oauth2 v2.0

I am generating a JWT token by making a post to this URL to log in to Microsoft: https://login.microsoftonline.com/{{TENANT_ID}}/oauth2/v2.0/token I am doing some integration tests and I want to test ...
alergio's user avatar
0 votes
0 answers
9 views

Can any one explain how i can manage context with tanstack router?

AuthcontextProvider.tsx import {ReactNode, useEffect, useState} from 'react'; import {AuthContext} from './AuthContext'; import {Token, User} from '@/types'; import {QUERY_KEYS} from '@/lib/react-...
Aniket Tiwari's user avatar
1 vote
1 answer
27 views

Redirect guests from WooCommerce checkout to My account login and back to checkout once logged in

I use the following code (pasted in my theme functions.php file) to redirect unlogged users from checkout page to WooCommerce My Account login form: add_action( 'template_redirect', '...
Abaol's user avatar
  • 21
0 votes
0 answers
11 views

Obtain token programatically to go see a page with ASP.NET application

I'm a newbie with authentication and authorization. When I go to a website, it redirects me to a url which requires email and password to login Microsoft Account. If I pass the right credential, it ...
Minh Trí Nguyễn's user avatar
0 votes
0 answers
24 views

Is there a way to tell WordPress to use a page theme as the styling of the login page?

I am needing to make a custom login page for my website but need things that are just unavailable (or not available for free) from any of the login page customization plugins. I have created a page ...
Zane Duncan's user avatar
0 votes
0 answers
6 views

Run specific code after Blazor authentication

I'm developing a Blazor Server Application (.NET 8) which uses authentication. I configured the project to use authentication this way in Program.cs: builder.Services.AddAuthentication(...
Panthesilea's user avatar

15 30 50 per page
1
2 3 4 5
5072