As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
I am using HTML5. When I create a new user, the new user is automatically logged in. Is there a way to log out this user without having them verify their email (I have automatic email verification turned on). Currently the app locks up and gives me this:{"error":"EmailVerificationRequired","description":"This app requires email address verification. Before performing any operations, please verify your email address by clicking the link sent to you upon signup.","debug":""}, when I try to connect to kinvey after refreshing.
You mean this happens even after verifying the email? Or you are not getting the verification email?
A
Alexander Williams
said
over 9 years ago
It happens before the user clicks the link in the email (the user does receive the email, however). The problem is that if the user that signs up does not verify their email then the app is useless for other users that would want to use it on the same computer. Is there a way to disable automatic sign in when a user signs up?
M
Mark
said
over 9 years ago
You can either log the user out manually: `Kinvey.setActiveUser(null)`, or use `Kinvey.User.create(data, { state: false })` to create a new user without logging it in.
Alexander Williams