If I want to serve the token from a '/some_path/oauth/token' as opposed to the default '/oauth/token' what are the things I must change?
I understand I need to change the http pattern for oauth server to
Also need to add an endpoint url as followsCode:<http pattern="/some_path/oauth/token".../>
Is there anything else that I need to do for this to work?Code:<oauth:authorization-server token-endpoint-url="/some_path/oauth/token".../>
Thanks


Reply With Quote