Im trying to have my users sign up with username and email, and have Kinvey check if they are unique. The sign up with username works but when I enforce the email and my user settings, is says that I am missing the email parameter in my request. Here is the code i have in Swift sending the Signup request.
Terrick Mansur
Hi,
Im trying to have my users sign up with username and email, and have Kinvey check if they are unique. The sign up with username works but when I enforce the email and my user settings, is says that I am missing the email parameter in my request. Here is the code i have in Swift sending the Signup request.
{
CustomUser.activeUser().email = "my@email.com"
CustomUser.signup(username: username, password: password, client: Kinvey.sharedClient, completionHandler:handleSignUpResponse())
}
I though this might work since I have the email set but this is not the case. How can I send the email parameter with the signup request?
Thank