From 4a486b237c1f5cf27ac892abef2908d7ec9cdba6 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Tue, 28 Mar 2017 15:07:57 +0300 Subject: juick-api: more Skype webhook fixes --- .../src/main/java/com/juick/api/controllers/SkypeEndpoint.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'juick-api/src/main/java/com/juick/api/controllers') diff --git a/juick-api/src/main/java/com/juick/api/controllers/SkypeEndpoint.java b/juick-api/src/main/java/com/juick/api/controllers/SkypeEndpoint.java index 2db666dc..6b16b3bd 100644 --- a/juick-api/src/main/java/com/juick/api/controllers/SkypeEndpoint.java +++ b/juick-api/src/main/java/com/juick/api/controllers/SkypeEndpoint.java @@ -3,9 +3,11 @@ package com.juick.api.controllers; import org.apache.commons.io.IOUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import org.springframework.stereotype.Controller; +import org.springframework.http.HttpStatus; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.ResponseStatus; +import org.springframework.web.bind.annotation.RestController; import javax.servlet.http.HttpServletRequest; import java.io.IOException; @@ -14,10 +16,11 @@ import java.nio.charset.StandardCharsets; /** * Created by vitalyster on 18.07.2016. */ -@Controller +@RestController public class SkypeEndpoint { private static final Logger logger = LoggerFactory.getLogger(SkypeEndpoint.class); @RequestMapping(value = "/skypebotendpoint", method = RequestMethod.POST) + @ResponseStatus(value = HttpStatus.OK) public void doPost(HttpServletRequest req) throws IOException { String data = IOUtils.toString(req.getInputStream(), StandardCharsets.UTF_8); logger.info("got data: {}", data); -- cgit v1.2.3