Class LinkedinSignInController


  • @RestController
    @RequestMapping("/signin/linkedin")
    public class LinkedinSignInController
    extends Object
    • Constructor Detail

      • LinkedinSignInController

        public LinkedinSignInController()
    • Method Detail

      • post

        @ResponseStatus(OK)
        @RequestMapping(method=POST)
        public void post​(@RequestParam(name="scope",required=false)
                         String scope)
                  throws Exception
        Throws:
        Exception
      • get

        @ResponseStatus(OK)
        @RequestMapping(method=GET)
        public void get​(@RequestParam(name="code",required=false)
                        String code,
                        @RequestParam(name="state",required=false)
                        String state,
                        @RequestParam(name="error",required=false)
                        String error,
                        @RequestParam(name="error_description",required=false)
                        String errorDescription)
                 throws Exception
        Throws:
        Exception