Ho cercato di capire come leggere il contenuto di una chiamata httpclient e non riesco a ottenerlo. Lo stato di risposta che ottengo è 200, ma non riesco a capire come ottenere l'effettivo Json restituito, che è tutto ciò di cui ho bisogno!
Quello che segue è il mio codice:
async Task<string> GetResponseString(string text)
{
var httpClient = new HttpClient();
var parameters = new Dictionary<string, string>();
parameters["text"] = text;
Task<HttpResponseMessage> response =
httpClient.PostAsync(BaseUri, new FormUrlEncodedContent(parameters));
return await response.Result.Content.ReadAsStringAsync();
}
E lo sto ottenendo semplicemente chiamandolo da un metodo:
Task<string> result = GetResponseString(text);
E questo è quello che ottengo
response Id = 89, Status = RanToCompletion, Method = "{null}", Result = "StatusCode: 200, ReasonPhrase: 'OK', Version: 1.1, Content: System.Net.Http.StreamContent, Headers:\r\n{\r\n Connection: keep-alive\r\n Date: Mon, 27 Oct 2014 21:56:43 GMT\r\n ETag: \"5a266b16b9dccea99d3e76bf8c1253e0\"\r\n Server: nginx/0.7.65\r\n Content-Length: 125\r\n Content-Type: application/json\r\n}" System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage>
Aggiornamento: questo è il mio codice attuale per la risposta di Nathan di seguito
async Task<string> GetResponseString(string text)
{
var httpClient = new HttpClient();
var parameters = new Dictionary<string, string>();
parameters["text"] = text;
var response = await httpClient.PostAsync(BaseUri, new FormUrlEncodedContent(parameters));
var contents = await response.Content.ReadAsStringAsync();
return contents;
}
E lo chiamo da questo metodo ...
string AnalyzeSingle(string text)
{
try
{
Task<string> result = GetResponseString(text);
var model = JsonConvert.DeserializeObject<SentimentJsonModel>(result.Result);
if (Convert.ToInt16(model.pos) == 1)
{
_numRetries = 0;
return "positive";
}
if (Convert.ToInt16(model.neg) == 1)
{
_numRetries = 0;
return "negative";
}
if (Convert.ToInt16(model.mid) == 1)
{
_numRetries = 0;
return "neutral";
}
return "";
}
catch (Exception e)
{
if (_numRetries > 3)
{
LogThis(string.Format("Exception caught [{0}] .... skipping", e.Message));
_numRetries = 0;
return "";
}
_numRetries++;
return AnalyzeSingle(text);
}
}
E continua a funzionare per sempre, raggiunge la linea una
var model = JsonConvert.DeserializeObject<SentimentJsonModel>(result.Result);
volta e continua ad andare senza fermarsi a un altro punto di interruzione.
Quando metto in pausa l'esecuzione, dice
Id = Impossibile valutare l'espressione perché il codice del metodo corrente è ottimizzato., Stato = Impossibile valutare l'espressione perché il codice del metodo corrente è ottimizzato., Metodo = Impossibile valutare l'espressione perché il codice del metodo corrente è ottimizzato., Risultato = Impossibile valutare l'espressione perché il codice del metodo corrente è ottimizzato.
.. Continuo l'esecuzione, ma funziona per sempre. Non sono sicuro di quale sia il problema