Example #1
0
 public HttpResponseMessage Post()
 {
     try
     {
         var speechlet = new AlexaService();
         return(speechlet.GetResponse(Request));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Example #2
0
 public AlexaResponse Post([FromBody] AlexaRequest request)
 {
     return(alexaService.GetResponse(request));
 }