A.W.H.
Posts: 0
Joined: Sat Jun 20, 2015 7:02 am

I am using Auth0 for sign ups, and storing sign ups and log ins in the Users Database. How do I keep a user signed in?

I want to be able to keep a user signed in if he/she is already signed in, and not require them to go through the Auth0 sign-in each time they load the app.

Secondly, after a user signs up for the first time, they have to submit a few details about their profile. How can I skip the 'sign up' page for users who are signing into the app, but not signing UP?

Serhii Kulibaba
Posts: 150
Joined: Tue Aug 27, 2013 1:47 pm

I am using Auth0 for sign ups, and storing sign ups and log ins in the Users Database. How do I keep a user signed in?

Hello,

You can save users data in localStorage and use them in future. If you need to work with social network - you need refresh access token.

A.W.H.
Posts: 0
Joined: Sat Jun 20, 2015 7:02 am

I am using Auth0 for sign ups, and storing sign ups and log ins in the Users Database. How do I keep a user signed in?

What do I implement to keep them logged in?

i.e. do I store their session token and say "if sessionToken is still active, skip login"?

On the same note, how do I skip the sign up for existing users? Which part of the user data in localStorage should be used for this?

Thank you.

A.W.H.
Posts: 0
Joined: Sat Jun 20, 2015 7:02 am

I am using Auth0 for sign ups, and storing sign ups and log ins in the Users Database. How do I keep a user signed in?

What happens in my app is that the user is automatically directed to a sign-in/sign-up with Auth0, which pops up, and is called with preset HTML and JS from the tutorial.

Then, the user is sent to the "Fill Out Your Profile Page".

How do I skip that?^

I want to skip that for users who've already filled out their profile pages. In other words, I want to skip that for user who've signed up before.

Is there a way to say "If user has signed up, skip the "Fill Out Your Profile Page" and go on to the next page"?

A.W.H.
Posts: 0
Joined: Sat Jun 20, 2015 7:02 am

I am using Auth0 for sign ups, and storing sign ups and log ins in the Users Database. How do I keep a user signed in?

I am using this thread:

https://getsatisfaction.com/apperyio/...

However, upon implementing the steps as listed in that thread, I seem to have to log in each time (using the test feature on web).

Error:
"isSessionCorrect = false"

A.W.H.
Posts: 0
Joined: Sat Jun 20, 2015 7:02 am

I am using Auth0 for sign ups, and storing sign ups and log ins in the Users Database. How do I keep a user signed in?

I am not able to have the user stay logged in while using the Test Browser

A.W.H.
Posts: 0
Joined: Sat Jun 20, 2015 7:02 am

I am using Auth0 for sign ups, and storing sign ups and log ins in the Users Database. How do I keep a user signed in?

http://appery.io/app/view/759808b6-f3...

1) Run app.
2) Sign up.
3) Test the app and close the app.
4) Open app again.
5) You should see the login page remember your login for a 1-click login. How do I get the app to remember the session token to skip the 1-click login completely?

Return to “Issues”