Not able to login to Unity Answers

I am trying to login to Unity answers and after I enter my credential it takes me to Unity ID page and there is no way out from that page, I tried pasting the answer URL, but then it asks me to log in again, I tried with firefox, chrome, and safari so it’s not my browser or cookie problem. Kindly help me with the problem or if i am doing something wrong.

Steps I have taken :

  1. Go to any unity answer
  2. Clicked on Login on the top right side under profile badge.
  3. Enter Credential
  4. Here it takes me to Unity ID page and there is no way out.

I have the same problem. I also tried using firefox, chrome, and safari.

any one with solution? i am still facing the same problem.

public enum UnityAnswersState { Working, Broken };

public UnityAnswersState GetCurrentState()
{
    if (DateTime.Now.Year > 2009)
    {
        return UnityAnswersState.Broken;
    }
    else
    {
        return UnityAnswersState.Working;
    }
}
1 Like