|
@@ -64,6 +64,8 @@ public class CallbackController {
|
|
|
HttpServletResponse response,
|
|
HttpServletResponse response,
|
|
|
@RequestParam("code") String code,
|
|
@RequestParam("code") String code,
|
|
|
@RequestParam("state") String state) throws IOException {
|
|
@RequestParam("state") String state) throws IOException {
|
|
|
|
|
+ System.err.println("code:" + code);
|
|
|
|
|
+ System.err.println("state:" + state);
|
|
|
response.sendRedirect(state + "?code=" + code);
|
|
response.sendRedirect(state + "?code=" + code);
|
|
|
}
|
|
}
|
|
|
|
|
|