Hello, I have a problem with the operation of the API, since May 21 I can not make queries or update users.
By making a POST to get a user by email, the response obtained is an HTML page instead of the XML. The strange thing is that by copying the URL and executing it in the browser, it returns an attach with the XML file ok.
WebRequest request = WebRequest.Create(url);
request.Method = "POST";
byte[] byteArray = Encoding.UTF8.GetBytes(query);
request.ContentType = "application/x-www-form-urlencoded";
request.ContentLength = byteArray.Length;
Stream dataStream = request.GetRequestStream();
dataStream.Write(byteArray, 0, byteArray.Length);
dataStream.Close();
WebResponse response = request.GetResponse();
dataStream = response.GetResponseStream();
StreamReader reader = new StreamReader(dataStream);
string responseFromServer = reader.ReadToEnd();
FELog.Log.WriteErrorLog(responseFromServer);
reader.Close();
dataStream.Close();
response.Close();
return responseFromServer;