Sign In Register

How can we help you today?

Start a new topic

No Error or Response?

Have a Unity inputField that, OnEditEnd, performs this function. print statement "logging in" pops up but "awaiting response" never does.


public void Login()

    {

 

       

        print("logging in");

        new AuthenticationRequest().SetUserName(username.text).SetPassword(password.text).Send((response) =>

        {

            print("awaiting response");

            if (!response.HasErrors)

            {

                print("logged in");

            }

            else

            {

                print("error");

            }

        });

       

 

    }

1 Comment

no longer had the setting file attached my b

Login to post a comment