Questions tagged [auth0-lock]
71 questions
1
vote
0 answers
After successful social sign in, i get ‘Open with ’ option in custom tabs
I am using CustomTabsIntent to launch social sign in by using Auth0., but after successful sign, i get 2 options to launch the app.
This is what i get after successful sign in & sign up`
This is my code.
final Uri.Builder uriBuilder = new…

dev90
- 7,187
- 15
- 80
- 153
1
vote
1 answer
Access app_metadata from Auth0 Lock
I am trying to access the app_metadata from Auth0 and I am using the Lock client. I have found the custom claims and created the rule that they show, but now I have no idea how actually use that data. Here is the function that handles all my…

akrantz01
- 628
- 1
- 9
- 19
1
vote
1 answer
How auth0 builds SAML auth request in Lock js
I want to build SAML request in JavaScript. I've seen Auth0 lock.js building the url on the fly when configured email domain is entered, i.e.: outlook.com.
The code is open source but is written in React which I'm not so good with.
GitHub >…

Sunny Sharma
- 4,688
- 5
- 35
- 73
1
vote
1 answer
Auth0: The customize lock screen kept popping up (AngularJs)
I downloaded the auth0 quick-start project, AngularJs SPA, to start my application from https://github.com/auth0-samples/auth0-angularjs-samples/tree/master/01-Login. It works fine without any issue.
However, when I follow the instruction from…

George Huang
- 2,504
- 5
- 25
- 47
1
vote
1 answer
Using powershell to log into Auth0 (OWIN) lock screen
I have a PowerShell script that warms up our .Net web app that was using forms authentication. I used Invoke-WebRequest and read the anti-forgery token, then did a POST with that token, and the user/pass fields. Then I stored the session, and was…

sheamus
- 3,001
- 4
- 31
- 54
1
vote
1 answer
Safari Auth0 Lock - Unable to configure verification page
it seems the auth0 lock ive implemented stopped working recently in safari. (Works in Chrome and Firefox).
I updated to the latest version, still has the same problem.
"auth0-js": "^9.8.0",
"auth0-lock": "^11.10.0",
This is the error message from…

Kay
- 17,906
- 63
- 162
- 270
1
vote
1 answer
How to get Facebook user id from Auth0-Lock SSO Authentication
I'm using Auth0-Lock for authenticating a user. But it seems that the response data from Auth0 did not include Facebook user_id. I want to get user_id because I need it to show user's profile URL in my app, like this:…

giapnh
- 2,950
- 24
- 20
1
vote
1 answer
Auth0 how to send email as username
After I upgraded Auth0 from version 9 to version 11, I face a problem while authenticating.
I have a request URL: https://my-domain.auth0.com/co/authenticate, and all the parameters in my request look good, except username. It sends truncated email…

Sonja
- 316
- 1
- 4
- 13
1
vote
1 answer
Can not login with auth0 lock
I use auth0 to create function login with angularjs.
When I input email and password login success not return message and redirect to login page again.
I check data return cannot see 'id_token'.
app.js include config auth
var rootApp =…

Huan Ho
- 145
- 2
- 9
1
vote
0 answers
Auth0 retrieve new access token from refresh token
I'm having some troubles trying to get a new access token from a refresh token. I'm using a native app with swift 4.
LoginController looks like
func checkAccessToken() {
SessionManager.shared.refreshToken { error in
…

Mauro
- 1,447
- 1
- 26
- 46
1
vote
0 answers
How to use the same message returned from Auth0 response?
I want to show the same message coming from Auth0 response without customizing it manually. Like, For Invalid_grant, the response from Auth is
{"error":"invalid_grant","error_description":"Wrong email or password."}
But it is displaying - "WE'RE…

Sachin
- 2,912
- 16
- 25
0
votes
0 answers
Auth0 - Lock : Dynamic Signup Select Options - unable to populate
I am new to using Auth0 and am creating a signup form which needs to capture
Given Name - records fine
Family Name - records fine
Country - records fine
Team - need help making dynamic
The problem I have is collecting the team…

Simon Price
- 3,011
- 3
- 34
- 98
0
votes
0 answers
ReactJs + Auth0-Lock: Access Custom fields in Universal login
I added additionalSignUpFields via Auth0-Lock for firstName, lastName and state to my Universal login.
const lock = new Auth0Lock(process.env.REACT_APP_AUTH0_CLIENT_ID, process.env.REACT_APP_AUTH0_DOMAIN, {
auth: {
redirectUrl:…

Didier Jean Charles
- 462
- 2
- 9
- 22
0
votes
0 answers
store a field calculated with Javascript on a hidden field in the Auth0 Lock
I'm using Auth0 lock and would like to store a calculated field with JS during the signup. So far I've added a hidden field like:
additionalSignUpFields: [{
type: "hidden",
name: "myField",
value: "abc123"
}],
During…

Victor Navarro
- 184
- 10
0
votes
2 answers
refresh_token is getting null from Auth0 on React App
I’m trying to get the refresh token from Auth0 after login. I’m currently using a React app with Auth0Lock to login. Based on suggestions from various sources, I enabled Allow Offline Access and set scope to offline_access.
But I’m still getting the…

Sagor Mahtab
- 147
- 3
- 11