Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. @RequestMapping(value = "/login", method = RequestMethod.GET)
  2. @ApiOperation(value = "login into vk", httpMethod = "GET")
  3. public String login (@RequestParam("access_token") String code) throws IOException {
  4. System.out.print(code);
  5. vkService.getUserCode();
  6. return null;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement