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.
As per Kinvey app life cycle - Kinvey initialization is the mandatory API call. When email verification is turned on this API fails with following error:
debug: ""
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."
name: "EmailVerificationRequired"
Unable to sign up new users or login existing user. Played with few tweaks like calling Kinvey.setActiveUser(null); before Kinvey.init and using refresh : true for init arguments.
1 Comment
M
Mark
said
about 9 years ago
Try `Kinvey.setActiveUser(null)` after `Kinvey.init` (inside the failure handler). I’m assuming you didn’t verify your e-mail, and therefore the behavior you are seeing is correct. You can always disable email verification for already registered users [here](https://console.kinvey.com/addons/users/settings).
indieworks
As per Kinvey app life cycle - Kinvey initialization is the mandatory API call. When email verification is turned on this API fails with following error:
debug: ""
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."
name: "EmailVerificationRequired"
Unable to sign up new users or login existing user. Played with few tweaks like calling Kinvey.setActiveUser(null); before Kinvey.init and using refresh : true for init arguments.