WWWRequest error:404 Not found issue.

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));
            }
        }
    }
}

are your link correct?
404 is a HTTP error code that means that no server was found bu the url or ip passed…

1 Like

Thank you so much. I’ll go check this out.