Thank you guys so much for your help. I am currently trying to run this SDK that I received. As mentioned before, I am brand spanking new to C# and ran into another issues :. I keep getting this WWWRequest error: 404 Not Found UnityEngine.Debug:LogError(Object)
It keeps Highlighting this line : Debug.LogError(String.Format(“WWWRequest error: {0}”, Request.error));
Debug.LogError(String.Format("WWWRequest error: {0}", Request.error));
return;
}
try
{
ServerResponse<TResult> response = JsonConvert.DeserializeObject<ServerResponse<TResult>>(Request.text);
if (response == null)
{
Debug.LogError(String.Format("WWWRequest error: Failed to parse response - {0}", Request.text));
return;
}
if (response.Status != "Success" || !String.IsNullOrEmpty(response.Error))
{
Debug.LogError(String.Format("WWWRequest error: {0}", response.Error != null ? response.Error : "No error message!"));
return;
}
success = true;
result = response.Data;
}
catch (Exception e)
{
Debug.LogError(String.Format("WWWRequest error: {0}", e.Message));
}
}
}
}