auth0 Questions

4

Hi, I've been searching the web with very little success and I'm hoping someone here at SO might be able to help. Currently I have my Spring Boot API's (Version 2.5.4) accepting a JWT which is prov...
Histrionic asked 8/9, 2021 at 14:37

1

In our code, we are using an external SDK to log in users (Auth0). This SDK opens a WebView using intent with ACTION_VIEW. I was trying to re-write some automation tests we had in place (we used na...
Parmesan asked 16/3, 2023 at 15:3

3

I'm trying to use Auth0 in angular app, but when I set the configuration in [https://manage.auth0.com/dashboard/] I got this error when click on save changes button Error!Payload validation error:...
Equation asked 2/9, 2021 at 3:3

2

Solved

I have a class for spring security, validating token from the user. I got the code from Auth0 website and modified antMatcher part for my configuration. Here is the code: @EnableWebSecurity public ...
Chufa asked 3/2, 2023 at 19:20

5

Solved

Auth0 provides two JWT libraries, one for Node: node-jsonwebtoken, and one for Java: java-jwt. I created the private/public key pair, and used it successfully in Node with node-jsonwebtoken: var ...
Hagiocracy asked 9/6, 2016 at 9:33

6

Solved

I'm using Auth0 for my user authentication to only allow logged in users to access a Spring (Boot) RestController. At this point I'm creating a real-time message functionality where users can send ...
Dilorenzo asked 30/3, 2017 at 10:9

4

Solved

I am trying to use the Auth0 for social login but I keep getting an exception of an undefined reference. This is the authentication service import { Injectable } from '@angular/core'; import { to...
Querida asked 4/12, 2016 at 10:5

2

Solved

Trying to setup jest tests around auth0-spa-js but getting error 'auth0-spa-js must run on a secure origin' when attempting to await createAuth0Client(config). Whats the best way to mock secure ori...
Muire asked 24/2, 2020 at 5:38

5

Solved

I'm using Auth0 to handle authentication in my web app. I'm using ASP.NET Core v1.0.0 and Angular 2 rc5 and I don't know much about authentication/security in general. In the Auth0 docs for ASP.NET...
Malisamalison asked 31/8, 2016 at 0:37

2

Solved

I managed to get Auth0 somewhat working for my Vue.js app. The Quickstart Guide was straight forward. So what happened is that I managed to use the login functionality and was prompted with the Aut...
Venitavenite asked 24/8, 2020 at 9:52

3

Solved

Description I am trying to use jwt-decode in a typescript project i.e. Stencil Project & it is throwing following error: This expression is not callable.Type '{ default: (token: string, opt...
Parnassian asked 11/12, 2019 at 7:20

5

Solved

I am working om using Auth0 has authentication for services. I have the following problem. I have created a user but when I try to make a request with that user I get the following error. Authoriza...
Mcguire asked 2/10, 2021 at 19:11

5

Solved

I am trying to implement the client_credentials grant to get a token in my spring boot resource server. I am using Auth0 as an Authorization server. They seem to require an extra parameter in the ...
Naples asked 28/11, 2018 at 17:2

1

I would like to let my users login with Google on my react web app (secured with Auth0), even if they come from a native app. I did add a social connection for oauth in auth0 dashboard and it's wor...
Papilla asked 10/3, 2023 at 21:19

7

I'm suffering this one: Couldn't retrieve remote JWK set: Read timed out I am using Java 11 with Spring boot 2.5.3, for dependencies: spring-security-oauth2-jose 5.5.1, spring-boot-starter-oauth2-...
Kenrick asked 3/8, 2021 at 22:52

4

Solved

I have gone through the following tutorial to get my Next.js App integrated with Auth0. I am able to log in and log out just fine but when trying to display user information on the page after login...
Duwe asked 6/5, 2022 at 15:37

3

I'm currently using auth0 to authenticate users in a Next.js application. I'm using the @auth0/nextjs-auth0 SDK and following along with the documentation. However, I'm having trouble figuring out ...
Choler asked 17/10, 2021 at 15:39

1

I'm trying to move a Next.js app with Auth0 authentication to the new app router. I understand the limitations of server components not being able to write cookies, but I'm getting a message that i...
Abundant asked 1/8, 2023 at 17:19

6

Solved

I have created an Auth0 client, I am logging in and receive this token: eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImtpZCI6Ik1rVkdOa1l5T1VaQ1JqTkRSVE5EUmtNeU5rVkROMEUyUTBVMFJrVXdPVEZEUkVVNU5UQXpOZyJ9.eyJ...
Labradorite asked 5/11, 2017 at 7:0

0

I’m using the @auth0/nextjs-auth0 package in a NextJS application with an external GraphQL API. We are trying to block the user to use the appSession cookie to call the API after logout. Since is i...
Youngstown asked 26/7, 2023 at 18:30

4

Solved

Seems that with Auth0, when in a M2M flow, we need to pass the audience parameter in the authorization request, and the the token will be issued for such audience curl --request POST \ --url https...
Contactor asked 24/5, 2022 at 11:59

1

Solved

I'm using NX to create an Angular security library so that I don't have all my security configured in one location. I'm using NX 16, Angular 16, and Auth0. I'm trying to pass in the Autho0 configur...
Hotbox asked 23/6, 2023 at 2:19

3

I have this code in /pages/api/_middleware.js: import { getSession } from '@auth0/nextjs-auth0' export default async function middleware(req, ev) { const session = await getSession(req) console....
Fite asked 18/11, 2021 at 15:37

3

Solved

so I recently got the login button to work with a netlify domain and now when I try to click the logout button, I get redirected to localhost:3000 but I want it to be redirected back to the page wi...
Titustityus asked 4/6, 2022 at 20:25

7

I am doing LinkedIn authentication with auth0 in a react app. I have set localhost:3000/upload in callback urls in settings, hopping that after users login at localhost:3000/login, they would be re...
Sedberry asked 24/7, 2016 at 21:3

© 2022 - 2024 — McMap. All rights reserved.