Exemple #1
0
        public ActionResult <IEnumerable <string> > RetornaSentimentos([FromHeader] string url)
        {
            var response = _facialRecognitionService.RetonaSentimentos(url).Result;

            return(StatusCode(
                       (int)response.StatusCode,
                       new
            {
                Sentimentos = response.Retorno,
                Mensagem = response.Message
            }));
        }