Changed parameter for check id endpoint to access_token instead of auth_token
parent
826be5a1a1
commit
68c8d1a9d2
|
@ -25,7 +25,7 @@ public class CheckIDEndpoint {
|
||||||
private ConfigurationPropertiesBean configBean;
|
private ConfigurationPropertiesBean configBean;
|
||||||
|
|
||||||
@RequestMapping("/checkid")
|
@RequestMapping("/checkid")
|
||||||
public ModelAndView checkID(@RequestParam("auth_token") String tokenString, ModelAndView mav, HttpServletRequest request) {
|
public ModelAndView checkID(@RequestParam("access_token") String tokenString, ModelAndView mav, HttpServletRequest request) {
|
||||||
|
|
||||||
if (!jwtSignerService.validateSignature(tokenString)) {
|
if (!jwtSignerService.validateSignature(tokenString)) {
|
||||||
// can't validate
|
// can't validate
|
||||||
|
|
Loading…
Reference in New Issue