Hi there !
I got an error when I try to create an user, here is my code :
public boolean touchDown(InputEvent event, float x, float y, int pointer, int button)
{
userService.createUser(name.getText(), pwd.getText(), mail.getText(), new App42CallBack() {
public void onSuccess(Object response)
{
User user = (User)response;
System.out.println("userName is " + user.getUserName());
System.out.println("emailId is " + user.getEmail());
game.setScreen(new Menu(game));
}
public void onException(Exception ex)
{
System.out.println("Exception Message"+ex.getMessage());
}
});
return false;
}
and it returns my this error :
I did use
App42API.initialize(MyGame.context, apiKey, secretKey);
I want to specify that I also use appwarp cloud API & also libgdx. AppWarp was working perfectly with match making and so on. Can somebody help me ?
EDIT : I didn't mention it but when I enter a random word into the mail adress field & push the button I get the message "not a valid mail adress" (or something like this), so all my code is doing well.
Thanks a lot :)